search for: quickstartindex

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

2015 Aug 07
1
xapian 1.2.21 / MSYS-1.0.11.exe
...other than static libraries on Interix 3.5. xapian bindings for tcl (8.5.5 installed from source with MinGW/MSYS as below) do not seem to be able to use tcl's .dll The argument --cxxflags returning empty when xapian was installed as [MSYS-1.0.11.exe] /usr, from g++ `xapian-config --cxxflags` quickstartindex.cc `xapian-config --libs` -o quickstartindex, caused me to rethink the install prefix, so I uninstalled it and reinstalled as --prefix=/c/xapian. I created a log of 'make check' which is attached to this email as make.check. Some additional comments below. Best Regards, Eric Lindblad -...
2008 Sep 27
3
Query::MatchAll
Why there still been rank when using Query::MatchAll() ?
2011 Sep 10
1
Broken Link
Hi, on http://xapian.org/docs/quickstart.html, the link that is supposed to point to quickstartindex.cc.html refers to quickstartsearch.cc.html ; maybe you could fix that. Thanks! Martin -- Empfehlen Sie GMX DSL Ihren Freunden und Bekannten und wir belohnen Sie mit bis zu 50,- Euro! https://freundschaftswerbung.gmx.de
2015 Jan 16
2
Question on "single writer, multiple reader"
...been using Xapian in my project recently. The feature "single writer, multiple reader" is one of my favorite, but currently I can't make it work. My goal is to add more documents to the database increamentally, while the Xapian search process is not stopped. I followed "quickstartindex.cc" and "quickstartsearch.cc" on the website (http://xapian.org/docs/quickstart.html), and added a while loop reading in query text around the core logic of the search process, in order to simulate the online situation. (code snippet attatched below) Here is my question:...