in reply to Re: KinoSearch - is there a way to iterate over all documents in an index?
in thread KinoSearch - is there a way to iterate over all documents in an index?

A big *thanks* for the effort.
But it did not get me far, as my index won't fit into ram. So, since there's no method to handle big indexes, I am stuck. (is it true only the searcher can read large indexes chunk-wise?)
  • Comment on Re^2: KinoSearch - is there a way to iterate over all documents in an index?

Replies are listed 'Best First'.
Re^3: KinoSearch - is there a way to iterate over all documents in an index?
by snowhare (Friar) on Sep 13, 2007 at 00:49 UTC
    Looking at the code, the KinoSearch::Store::FSInvIndex data store is just a simple directory filled with files. You should be able to open the directory and iterate over the files in it yourself. ;)