wheat-cache/storage/dao/hashx.go

40 lines
1.2 KiB
Go

package dao
import "gitee.com/wheat-os/wheatCache/pkg/proto"
func (d *Dao) HDel(key *proto.BaseKey, hKeys []string) (*proto.HDelResponse, error) {
panic("not implemented") // TODO: Implement
}
func (d *Dao) HExists(_ *proto.BaseKey, _ string) (*proto.HExistsResponse, error) {
panic("not implemented") // TODO: Implement
}
func (d *Dao) HGet(_ *proto.BaseKey, _ []string) (*proto.HGetResponse, error) {
panic("not implemented") // TODO: Implement
}
func (d *Dao) HGetAll(_ *proto.BaseKey) (*proto.HGetAllResponse, error) {
panic("not implemented") // TODO: Implement
}
func (d *Dao) HIncrBy(_ *proto.BaseKey, _ []string) (*proto.HIncrByResponse, error) {
panic("not implemented") // TODO: Implement
}
func (d *Dao) HKeys(_ *proto.BaseKey) (*proto.HKeysResponse, error) {
panic("not implemented") // TODO: Implement
}
func (d *Dao) HLen(_ *proto.BaseKey) (*proto.HLenResponse, error) {
panic("not implemented") // TODO: Implement
}
func (d *Dao) HSet(_ *proto.BaseKey, _ map[string]string) (*proto.HSetResponse, error) {
panic("not implemented") // TODO: Implement
}
func (d *Dao) HSetX(_ *proto.BaseKey, _ map[string]string) (*proto.HSetXResponse, error) {
panic("not implemented") // TODO: Implement
}