WALPath returns the path to the database's WAL file.
()
| 450 | |
| 451 | // WALPath returns the path to the database's WAL file. |
| 452 | func (db *DB) WALPath() string { |
| 453 | return db.path + "-wal" |
| 454 | } |
| 455 | |
| 456 | // MetaPath returns the path to the database metadata. |
| 457 | func (db *DB) MetaPath() string { |
no outgoing calls