mcartright / julien

Toolkit for Information Retrieval research
7 stars 1 forks source link

Add tests for field support for both DiskIndex and MemoryIndex specs. #12

Closed mcartright closed 11 years ago

mcartright commented 11 years ago

Basic DiskIndex field tests done. Found out MemoryIndex has no field support. Will add tomorrow.

mcartright commented 11 years ago

Realized trying to keep the MemoryIndex in step with the disk parts is a royal, unmaintainable pain. Refactored the mem package to dynamic, renamed the MemoryIndex to DynamicIndex, removed the old DynamicIndex interface (it was empty) and am in the process of creating a MemoryIndex class that will mirror the DiskIndex, except it will manage memory btrees and not disk btrees.

mcartright commented 11 years ago

Done. All tests green.