To see which existing encrypted indexes are available to your CyborgDB client, you can use list_indexes
:
# Import cyborgdb_core or cyborgdb_lite:
import cyborgdb_core as cyborgdb
import cyborgdb_lite as cyborgdb
# Set index location and config location beforehand...
client = cyborgdb.Client(index_location=index_location, config_location=config_location)
indexes = client.list_indexes()
print(indexes)
# Example output:
# ["index_one", "index_two", "index_three"]
list_indexes
is not available for memory
locations.
API Reference
For more information on listing encrypted indexes, refer to the API reference: