Displaying 1 result from an estimated 1 matches for "xapian_stor".
Did you mean:
xapian_store
2011 May 30
1
How to check docid
I have a bit of code (Python) to delete a number of documents:
for f in Flist: xapian_store.delete_document(f.pri_key)
in which I am using a unique primary key from an SQL database as the docid for the Xapian database.
The problem I have is that some of the documents may not have been created - so I get an error. Now I could just ignore the error (try-recover), but what would be the re...