fnp
/
wolnelektury.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
cd9153a
)
add limit options in reindex command (for debugging)
author
Jan Szejko
<janek37@gmail.com>
Fri, 20 Oct 2017 08:05:46 +0000
(10:05 +0200)
committer
Jan Szejko
<janek37@gmail.com>
Fri, 20 Oct 2017 08:05:46 +0000
(10:05 +0200)
src/search/management/commands/reindex.py
patch
|
blob
|
history
diff --git
a/src/search/management/commands/reindex.py
b/src/search/management/commands/reindex.py
index
b8cb49c
..
da4574f
100755
(executable)
--- a/
src/search/management/commands/reindex.py
+++ b/
src/search/management/commands/reindex.py
@@
-51,6
+51,8
@@
class Command(BaseCommand):
help='book id instead of slugs'),
make_option('-t', '--just-tags', action='store_true', dest='just_tags', default=False,
help='just reindex tags'),
help='book id instead of slugs'),
make_option('-t', '--just-tags', action='store_true', dest='just_tags', default=False,
help='just reindex tags'),
+ make_option('--start', dest='start_from', default=None, help='start from this slug'),
+ make_option('--stop', dest='stop_after', default=None, help='stop after this slug'),
)
def handle(self, *args, **opts):
)
def handle(self, *args, **opts):
@@
-67,14
+69,23
@@
class Command(BaseCommand):
else:
books += Book.objects.filter(slug=a).all()
else:
else:
books += Book.objects.filter(slug=a).all()
else:
- books = list(Book.objects.all())
-
+ books = list(Book.objects.order_by('slug'))
+ start_from = opts.get('start_from')
+ stop_after = opts.get('stop_after')
+ if start_from:
+ start_from = start_from.replace('-', '')
+ if stop_after:
+ stop_after = stop_after.replace('-', '')
while books:
try:
b = books[0]
while books:
try:
b = books[0]
- print b.title
- idx.index_book(b)
- idx.index.commit()
+ slug = b.slug.replace('-', '')
+ if stop_after and slug > stop_after:
+ break
+ if not start_from or slug >= start_from:
+ print b.slug
+ idx.index_book(b)
+ idx.index.commit()
books.pop(0)
except:
traceback.print_exc()
books.pop(0)
except:
traceback.print_exc()