search for: namespacexapian

Displaying 4 results from an estimated 4 matches for "namespacexapian".

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,
2011 Mar 07
1
Set Term Frequency for a Query
...e a query and setting for each term its "term frequency" with the classical constructor Xapian::Query<http://xapian.org/docs/apidoc/html/classXapian_1_1Query.html#f396e213df0d8bcffa473a75ebf228d6>(const std::string &tname_, Xapian::termcount<http://xapian.org/docs/apidoc/html/namespaceXapian.html#72b5a76dd8cfb7b251fe7986e86390cb>wqf_=1, Xapian::termpos<http://xapian.org/docs/apidoc/html/namespaceXapian.html#e5a16f073d0c8ed54085a9de07248d45>pos_=0) : Xapian::Query query_test(Xapian::Query::OP_OR, Xapian::Query("Bonjour", 10), Xapian::Query("Hello", 5));...
2011 Apr 19
0
Merge databases
...and setting for each term > its "term frequency" with the classical constructor Xapian::Query<http://xapian.org/docs/apidoc/html/classXapian_1_1Query.html#f396e213df0d8bcffa473a75ebf228d6>(const std::string &tname_, > Xapian::termcount<http://xapian.org/docs/apidoc/html/namespaceXapian.html#72b5a76dd8cfb7b251fe7986e86390cb>wqf_=1, > Xapian::termpos<http://xapian.org/docs/apidoc/html/namespaceXapian.html#e5a16f073d0c8ed54085a9de07248d45>pos_=0) : > > Xapian::Query query_test(Xapian::Query::OP_OR, Xapian::Query("Bonjour", > 10), Xapian::Query(&quo...
2020 Aug 30
0
Xapian on Android?
...e useful (the feature was sponsored by https://endlessos.com/ who use it to allow shipping a single file containing both data and a pre-built Xapian index of it). The single-file database is generated by compacting a database, and can't be 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...