Mercurial > p > roundup > code
diff roundup/backends/back_tsearch2.py @ 3092:a8c2371f45b6
Some cleanup:
* indexer_rdbms.Indexer now subclasses from indexer_common.Indexer instead of
indexer_dbm.Indexer
* rdbms_common doesn't call save_index anymore
* so we can remove save_index from indexer_rdbms and back_tsearch2
* indexer_rdbms.Indexer.rollback() wasn't used at all, so remove it
* move is_stopword code to indexer_common
| author | Johannes Gijsbers <jlgijsbers@users.sourceforge.net> |
|---|---|
| date | Sat, 08 Jan 2005 16:16:59 +0000 |
| parents | 6da931530497 |
| children | 6e3e4f24c753 |
line wrap: on
line diff
--- a/roundup/backends/back_tsearch2.py Sat Jan 08 14:52:13 2005 +0000 +++ b/roundup/backends/back_tsearch2.py Sat Jan 08 16:16:59 2005 +0000 @@ -1,4 +1,4 @@ -#$Id: back_tsearch2.py,v 1.8 2005-01-08 11:25:23 jlgijsbers Exp $ +#$Id: back_tsearch2.py,v 1.9 2005-01-08 16:16:59 jlgijsbers Exp $ # Note: this backend is EXPERIMENTAL. Do not use if you value your data. import re @@ -134,9 +134,6 @@ # These only exist to satisfy the interface that's expected from indexers. def force_reindex(self): pass - - def save_index(self): - pass def add_text(self, identifier, text, mime_type=None): pass
