fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
commit on close of reusable inedxer
[wolnelektury.git]
/
apps
/
search
/
index.py
diff --git
a/apps/search/index.py
b/apps/search/index.py
index
12554d2
..
97145d3
100644
(file)
--- a/
apps/search/index.py
+++ b/
apps/search/index.py
@@
-554,7
+554,7
@@
class ReusableIndex(Index):
index = None
def open(self, analyzer=None, threads=4):
index = None
def open(self, analyzer=None, threads=4):
- if ReusableIndex.index
is not None
:
+ if ReusableIndex.index:
self.index = ReusableIndex.index
else:
print("opening index")
self.index = ReusableIndex.index
else:
print("opening index")
@@
-568,13
+568,15
@@
class ReusableIndex(Index):
@staticmethod
def close_reusable():
@staticmethod
def close_reusable():
- if ReusableIndex.index is not None:
+ if ReusableIndex.index:
+ print("closing index")
ReusableIndex.index.optimize()
ReusableIndex.index.close()
ReusableIndex.index = None
def close(self):
ReusableIndex.index.optimize()
ReusableIndex.index.close()
ReusableIndex.index = None
def close(self):
- pass
+ if ReusableIndex.index:
+ ReusableIndex.index.commit()
class JoinSearch(object):
class JoinSearch(object):