0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-02-16 08:40:11 +01:00

db files <db> <table>|<file>

Peter Gervai 2020-09-28 12:55:16 +02:00
parent 93ed3056bd
commit 98bc494094

@ -266,6 +266,24 @@ Call a *RocksDB* compaction on *db* (`events` or `media`) *table* (like `_room_h
Majority of the memory usage is db cache. This command shows the memory usage of the db cache. If you use two stars (`**`) you get the details.
You can tailor the "Capacity" by configuring like `conf ircd.m.dbs.content.cache.size`.
### `db files <db>`
- db files events
List database statistics for all the tables.
### `db files <db> <table>`
- db files events _event_json
List table statistics for one table, listing the specific database files the table uses.
### `db files <db> <tablefile>`
- db files events /019496.sst
List file table statistics for the specifc file of a table. Details internal data, including compression.
***
<a name="user"/>