From: Sebastian B. <sb...@us...> - 2014-01-19 18:34:47
|
Update of /cvsroot/simplemail/simplemail In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv22855 Modified Files: index_external.c Log Message: Added short description and fixed header comment. Index: index_external.c =================================================================== RCS file: /cvsroot/simplemail/simplemail/index_external.c,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- index_external.c 19 Jan 2014 18:33:17 -0000 1.15 +++ index_external.c 19 Jan 2014 18:34:45 -0000 1.16 @@ -1,6 +1,6 @@ /** - * index_external.c - a external string index implementation for SimpleMail. - * Copyright (C) 2012 Sebastian Bauer + * index_external.c - an external string index implementation for SimpleMail. + * Copyright (C) 2013 Sebastian Bauer * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -18,6 +18,13 @@ /** * @file index_external.c + * + * This is a naive implementation of an external memory data structure that + * can be used for full text search. It is basically a b tree that stores all + * suffixes of each document that is inserted. + * + * It is very slow at the moment, in particular as the strings are read multiple + * times from the external media. */ #include <errno.h> |