wheat-cache/pkg/structure/stringx/string.go

52 lines
986 B
Go

package stringx
import "gitee.com/timedb/wheatCache/pkg/proto"
type StringX struct {
Value string
}
func (s *StringX) SizeByte() int64 {
panic("implement me")
}
func (s *StringX) RollBack() error {
panic("implement me")
}
func (s *StringX) Begin() error {
panic("implement me")
}
func (s *StringX) Comment() error {
panic("implement me")
}
func (s *StringX) Encode() ([]byte, error) {
panic("implement me")
}
func (s *StringX) Set(req *proto.SetRequest) ([]string, error) {
panic("implement me")
}
func (s *StringX) Get(req *proto.GetRequest) ([]string, error) {
panic("implement me")
}
func (s *StringX) Add(req *proto.AddRequest) ([]string, error) {
panic("implement me")
}
func (s *StringX) Reduce(req *proto.ReduceRequest) ([]string, error) {
panic("implement me")
}
func (s *StringX) Setbit(req *proto.SetbitRequest) ([]string, error) {
panic("implement me")
}
func (s *StringX) Getbit(req *proto.GetbitRequest) ([]string, error) {
panic("implement me")
}