6 Star 53 Fork 8

roseduan/rosedb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
errors.go 604 Bytes
一键复制 编辑 原始数据 按行查看 历史
roseduan 提交于 2023-08-05 15:21 . fix watch
package rosedb
import "errors"
var (
ErrKeyIsEmpty = errors.New("the key is empty")
ErrKeyNotFound = errors.New("key not found in database")
ErrDatabaseIsUsing = errors.New("the database directory is used by another process")
ErrReadOnlyBatch = errors.New("the batch is read only")
ErrBatchCommitted = errors.New("the batch is committed")
ErrBatchRollbacked = errors.New("the batch is rollbacked")
ErrDBClosed = errors.New("the database is closed")
ErrMergeRunning = errors.New("the merge operation is running")
ErrWatchDisabled = errors.New("the watch is disabled")
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/roseduan/rosedb.git
[email protected]:roseduan/rosedb.git
roseduan
rosedb
rosedb
main

搜索帮助