forked from p93542168/wheat-cache
feat(storage): update server
This commit is contained in:
parent
a9ab92c16a
commit
cc57179c11
|
@ -2,10 +2,7 @@ package server
|
|||
|
||||
import (
|
||||
context "context"
|
||||
"errors"
|
||||
|
||||
"gitee.com/timedb/wheatCache/pkg/proto"
|
||||
"gitee.com/timedb/wheatCache/pkg/structure/stringx"
|
||||
)
|
||||
|
||||
type server struct {
|
||||
|
@ -20,41 +17,28 @@ func (s *server) Get(
|
|||
cxt context.Context,
|
||||
req *proto.GetRequest,
|
||||
) (*proto.CommendResponse, error) {
|
||||
|
||||
var value interface{}
|
||||
|
||||
switch value.(type) {
|
||||
case *stringx.StringX:
|
||||
default:
|
||||
return nil, errors.New("awdwd")
|
||||
}
|
||||
|
||||
result, err := value.(*stringx.StringX).Get(req)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return &proto.CommendResponse{
|
||||
Result: result,
|
||||
}, nil
|
||||
panic("implement me")
|
||||
}
|
||||
|
||||
func (s *server) Set(
|
||||
ctx context.Context,
|
||||
req *proto.SetRequest,
|
||||
) (*proto.CommendResponse, error) {
|
||||
var value interface{}
|
||||
|
||||
switch value.(type) {
|
||||
case *stringx.StringX:
|
||||
default:
|
||||
return nil, errors.New("awdwd")
|
||||
}
|
||||
|
||||
result, err := value.(*stringx.StringX).Set(req)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return &proto.CommendResponse{
|
||||
Result: result,
|
||||
}, nil
|
||||
panic("implement me")
|
||||
}
|
||||
|
||||
func (s *server) Add(ctx context.Context, request *proto.AddRequest) (*proto.CommendResponse, error) {
|
||||
panic("implement me")
|
||||
}
|
||||
|
||||
func (s *server) Reduce(ctx context.Context, request *proto.ReduceRequest) (*proto.CommendResponse, error) {
|
||||
panic("implement me")
|
||||
}
|
||||
|
||||
func (s *server) Setbit(ctx context.Context, request *proto.SetbitRequest) (*proto.CommendResponse, error) {
|
||||
panic("implement me")
|
||||
}
|
||||
|
||||
func (s *server) Getbit(ctx context.Context, request *proto.GetbitRequest) (*proto.CommendResponse, error) {
|
||||
panic("implement me")
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue