I am beginning to research on content indexing implementation, and was having a look at Whoosh (https://pypi.python.org/pypi/Whoosh/).
I am curious to know where Whoosh stores its content physically - Is it using files?
I am beginning to research on content indexing implementation, and was having a look at Whoosh (https://pypi.python.org/pypi/Whoosh/).
I am curious to know where Whoosh stores its content physically - Is it using files?
Whoosh uses a pluggable storage system; if you use the
create_in()
function then aFileStorage()
class is used that stores indexes in files in a directory.See the Whoosh quickstart: