CubDB.current_db_file

You're seeing just the function current_db_file, go back to CubDB module for more information.

Specs

current_db_file(GenServer.server()) :: String.t()

Returns the path of the current database file.

The current database file will change after a compaction operation.

Example

{:ok, db} = CubDB.start_link("some/data/directory")

CubDB.current_db_file(db)
#=> "some/data/directory/0.cub"