search for: classxapian_1_1database

Displaying 7 results from an estimated 7 matches for "classxapian_1_1database".

2020 Aug 27
4
Xapian on Android?
Friends, I would like to hear from anyone who has experience deploying Xapian on Android. I'm new to Xapian, but I know it is used by a couple partners for offline projects on Linux and Windows. Our small nonprofit, WiderNet, provides off-line access to thousands of Web sites for people who lack Internet connectivity (www.widernet.org). Over 2,000 universities, schools, health care sites,
2009 Apr 23
1
PHP Total document
I was also wondering if someone could tell me how to extract the total number of documents contained in a database via PHP. Thanks, Frank
2010 Jun 21
1
How to search in many database?
Hi, I'm newbie in xapian. I just use xapian for a few week ago and I would like to know: How I can search in many database at once time? Please send some answer to me. p.s. Sorry about my english. Regrad Mr.T _________________________________________________________________ Hotmail: ??????????????????????????????????????????????????????????????????????
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
2020 Aug 30
0
Xapian on Android?
...e updated directly: https://xapian.org/docs/apidoc/html/namespaceXapian.html#af230d8321f07e93dc62d57a6fcfe89fa It can be embedded inside another file (you can open it by providing a file descriptor positioned at the start of the embedded single file database): https://xapian.org/docs/apidoc/html/classXapian_1_1Database.html#aa882e42d12defaf578e68ac9a4fe36f0 Also, if you don't use any features which need the termlist table at search time (the main one is being able to list matching terms) then you could delete termlist.glass from the database directory before compacting to a single file database to save space...
2013 Apr 26
1
remote backend
...ttp://xapian.org/docs/remote.html (remote backend documentation) > * http://xapian.org/docs/overview.html#specifying-a-database (talks > about stub databases, which you'll want to use with the remote > backend) Also the API doc for database: http://xapian.org/docs/apidoc/html/classXapian_1_1Database.html#2fc5aa368a7097ca787a831211a2e3bc Just call add_database for each db you have, and then a search will work over all of them (I think) -- E: sym.roe at talusdesign.co.uk<mailto:sym.roe at talusdesign.co.uk> M: 07742079314 @symroe
2007 Nov 08
1
QueryParser : some remarks
Hi to all, First, I would like to say a big thank you for the work which was done on my 'wish bug' to allow mapping one field to multiple prefixes (http://www.xapian.org/cgi-bin/bugzilla/show_bug.cgi?id=93). That's great! I have upgraded to 1.0.4 and I am revisiting my code, replacing the php query parser I wrote with Xapian's one. Everything works well, but I have some