search for: xappy

Displaying 11 results from an estimated 11 matches for "xappy".

Did you mean: happy
2011 Jun 10
1
Where do I stick the PARTIAL flag in xappy?
I want to be able to do searches with FLAG_PARTIAL and some without. Most searches without but with the PARTIAL for an autocomplete widget. I'm using xappy and I can't find where to send the flag when I build up the query. The docs talk of setting up the database with or without FLAG_PARTIAL but that's probably not what I want. Peter
2007 Oct 10
2
Something to think about
I'm planning to add multiple-database support for searches to my "Xappy" python wrapper (more on this wrapper later, but for now, see http://code.google.com/p/xappy for details). This is reasonably straightforward, because Xapian supports this nicely: except that "Xappy" generates a "fieldname->prefix" mapping automatically. The prefi...
2010 Oct 08
1
Get a list of all terms in an indexed corpus
Hello, I have a corpus that I have indexed with xapian/xappy and I would now like to generate a corpus-specific list of stopwords. (This is a technical corpus, so a typical stopword list wouldn't be helpful.) My first thought was to ask the xapian database for a list of terms followed by their frequency. My intuition is that I could probably bring toget...
2011 Jan 17
2
DatabaseCorruptError
Hi there, My web app uses Xapian via the PHP bindings. I'm getting this error thrown occasionally when atempting to instantiate a XapianDatabase object for searching. DatabaseCorruptError: Expected block 107 to be level 1, not 0 Here's the line that invokes it: $database = new XapianDatabase(PROJROOT.'/data/xapian/posts'); And my version is xapian-core 1.2.3 with matchspy.
2018 Jul 21
1
Xapian configuration
Hello, I want a tutorial on how to configure xapian on a moinmoin wiki. I install my moinmoin wiki on a virtual env but I m having lots of problem to configure xapian Thanks
2009 Nov 11
2
[python indexer] add meta informations
Hello, I'm trying to index some blog stuff through python bindings. I'd like to know how to add some informations (url, title, date, and so on) so that I can reach them through a xapian.Enquire object.. I believe it's something to be set in xapian.TermGenerator(), but... I can't manage to find which function. I'm waiting for something like : xtermgen.add_meta('url',
2011 Aug 09
3
what is the fastest way to fetch results which are sorted by timestamp ?
what is the fastest way to fetch results which are sorted by timestamp ? i want to use xapian as my search engine , use add_boolean_term(something) and add_value(0,sortable_serialise(get_timestamp())) to a doc. search through enquire.set_weighting_scheme(xapian.BoolWeight()) and enquire.set_sort_by_value(0,True) to ensure that the results are sorted by the timestamp. This method is ok , but
2010 Oct 21
0
compile xapian-extras
Hi, The xapian-extras supports image similarity.( http://xapian.wordpress.com/2009/03/11/xappy-now-supports-image-similarity-searching/ ) I complie xapian-extras and xapian-extras-bindings with python. import xapian import xapian.imgseek doc = xapian.Document() imgsig = xapian.imgseek.ImgSig.register_Image(JPEG_PATH) imgterms = xapian.imgseek.ImgTerms('A', 300) imgterms.AddTerms(do...
2011 Jul 20
1
Phrase search problem
...returned. But, if I search for 'curtain nice curtain' and there are documents that matches this query, it works ok. attached there is a python program that shows the problem. I tried this program with python 2.5 and python 2.6, the xapian version I'm using is the one used together with xappy (a modified version of 1.2.0, according to xapian.version_string()). I tried running this same program in the xapian that comes with Ubuntu (1.0.20) and it doesn't work since chert is not available. can someone help me with this? -- Bruno -------------- next part -------------- A non-text at...
2011 Aug 11
3
Fwd: Re: what is the fastest way to fetch results which are sorted by timestamp ?
...t; > This method is ok , but is there a faster way to do that ? Since i have > millions of records . > > > > Sorting the database, or some variant of that, is the way to get > > really fast sorted results. > > > > There's a variation I experimented with using Xappy, involving sorting > > as much of the database as possible, keeping track of the range of > > document IDs for which the values were sorted, and using a custom > > PostingSource to take advantage of that knowledge to skip past the > > document IDs which were known to be at t...
2009 Apr 12
2
Indexing speed benchmark - Xapian, Solr
I came across this benchmark between Xapian & Solr: http://www.anur.ag/blog/2009/03/xapian-and-solr/ According to the benchmark, a doc set that took Solr 34 min to index took Xapian 7 hours. Solr's index is also much smaller - 2.5GB to Xapian's 8.9GB. I'm new to Xapian. Just wondering if results like these are typical? Is indexing speed & size a known issue in Xapian? Or is