| 12345678910111213141516171819202122 |
- // Author: simon (ynwdlxm@163.com)
- // Date: 2025/9/12 13:27
- // Desc: Redis 数据库业务操作
- package database
- import (
- "github.com/runningwater/go-redis/interface/resp"
- )
- type CmdLine = [][]byte
- type DataEntity struct {
- Data any
- }
- type Database interface {
- Exec(client resp.Connection, args [][]byte) resp.Reply
- Close()
- AfterClientClose()
- }
|