fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
reindex command should use new interface
[wolnelektury.git]
/
apps
/
search
/
management
/
commands
/
reindex.py
diff --git
a/apps/search/management/commands/reindex.py
b/apps/search/management/commands/reindex.py
index
3b6517f
..
b1ec9c3
100755
(executable)
--- a/
apps/search/management/commands/reindex.py
+++ b/
apps/search/management/commands/reindex.py
@@
-14,9
+14,8
@@
class Command(BaseCommand):
def handle(self, *args, **opts):
from catalogue.models import Book
import search
def handle(self, *args, **opts):
from catalogue.models import Book
import search
- idx = search.ReusableIndex()
- idx.open()
-
+ idx = search.Index()
+
if not opts['just_tags']:
if args:
books = []
if not opts['just_tags']:
if args:
books = []
@@
-33,4
+32,3
@@
class Command(BaseCommand):
idx.index_book(b)
print 'Reindexing tags.'
idx.index_tags()
idx.index_book(b)
print 'Reindexing tags.'
idx.index_tags()
- idx.close()