From 6285ef9fdfc03df7ef79109e62d1cb96c9e47d0e Mon Sep 17 00:00:00 2001 From: Gibheer Date: Fri, 10 Jun 2011 00:09:32 +0200 Subject: [PATCH] added a todo list for further development --- TODO | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 TODO diff --git a/TODO b/TODO new file mode 100644 index 0000000..d357e64 --- /dev/null +++ b/TODO @@ -0,0 +1,18 @@ +* IndexSearcher + * build indexes for attributes + * implement tree structures for index + * binary tree + * b-tree + * word tree for strings + * index has only the position of document in storage + * add scoring for findings + * could be implemented as per document score stored in the index + * findings of string in the document in relation to findings in all documents + * info should be accessible after building the index +* implement stemmer for strings + * build an abstract stemmer class + * implement a simple stemmer +* implement resultset + * should be streamlined to gather resultset from multiple queries + * sorts the result if needed + * returns only the top x documents