aboutsummaryrefslogtreecommitdiffstats
path: root/db/db.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/db: move from dbDmitry Vyukov2017-06-031-248/+0
|
* pkg/log: move from logDmitry Vyukov2017-06-031-1/+1
|
* db: add packageDmitry Vyukov2017-01-161-0/+248
Package db implements a simple key-value database. The database is cached in memory and mirrored on disk. It is used to store corpus in syz-manager and syz-hub. The database strives to minimize number of disk accesses as they can be slow in virtualized environments (GCE). Use db in syz-manager instead of the old PersistentSet.