Commit 697662a2 authored by Andreas Jung's avatar Andreas Jung

added indexSize()

parent 9b80176c
...@@ -217,6 +217,10 @@ class ZCTextIndex(Persistent, Acquisition.Implicit, SimpleItem): ...@@ -217,6 +217,10 @@ class ZCTextIndex(Persistent, Acquisition.Implicit, SimpleItem):
"""Return number of unique words in the index""" """Return number of unique words in the index"""
return self.index.length() return self.index.length()
def indexSize(self):
"""Return the number of indexes objects """
return self.index.document_count()
def clear(self): def clear(self):
"""reinitialize the index (but not the lexicon)""" """reinitialize the index (but not the lexicon)"""
try: try:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment