You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to build inverted index using ensureIndex(index_type='inverted', fields=[ "_key" ])
It will raise exception Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/lib/python3.8/site-packages/pyArango/collection.py", line 624, in ensureIndex self.indexes[index_type][ind.infos["id"]] = ind KeyError: 'inverted'
It didn't fail in collection.py line 623, which means there is an index named 'inverted'.
How to create this index?
The text was updated successfully, but these errors were encountered:
When I try to build inverted index using
ensureIndex(index_type='inverted', fields=[ "_key" ])
It will raise exception
Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/lib/python3.8/site-packages/pyArango/collection.py", line 624, in ensureIndex self.indexes[index_type][ind.infos["id"]] = ind KeyError: 'inverted'
It didn't fail in collection.py line 623, which means there is an index named 'inverted'.
How to create this index?
The text was updated successfully, but these errors were encountered: