Comment 3 for bug 614284

Revision history for this message
Michal Hruby (mhr3) wrote :

I have a libzg query that searches for "v*" with an empty event as a template, this is the result:
DEBUG:zeitgeist.fts:Search '(v*) AND (())' gave 8 hits in 34.8780155182ms

The same query by using `./talis 'v*'`:
DEBUG:zeitgeist.fts:Search 'v*' gave 8845 hits in 12.4750137329ms

Now libzg search for "v" (again with empty event as a template)
DEBUG:zeitgeist.fts:Search '(v) AND (())' gave 8 hits in 0.739097595215ms

Result of `./talis 'v'`:
DEBUG:zeitgeist.fts:Search 'v' gave 70 hits in 0.261068344116ms

All of this was run on the same DB, why do the hits pairs differ?