| 79 | } |
| 80 | |
| 81 | type DB struct { |
| 82 | path string |
| 83 | cfg *config.LevelDBConfig |
| 84 | db *leveldb.DB |
| 85 | opts *opt.Options |
| 86 | |
| 87 | iteratorOpts *opt.ReadOptions |
| 88 | syncOpts *opt.WriteOptions |
| 89 | |
| 90 | filter filter.Filter |
| 91 | |
| 92 | mu sync.RWMutex |
| 93 | stats *Stats |
| 94 | closed bool |
| 95 | config Config |
| 96 | } |
| 97 | |
| 98 | type Stats struct { |
| 99 | ReadOps int64 |
nothing calls this directly
no outgoing calls
no test coverage detected