// Code generated by protoc-gen-go.
|
|
// source: redis.proto
|
|
// DO NOT EDIT!
|
|
|
|
/*
|
|
Package redisrpc is a generated protocol buffer package.
|
|
|
|
It is generated from these files:
|
|
redis.proto
|
|
|
|
It has these top-level messages:
|
|
GetRequest
|
|
SetRequest
|
|
DelRequest
|
|
HGetRequest
|
|
HSetRequest
|
|
HDelRequest
|
|
SetExpireRequest
|
|
GetStringResponse
|
|
HGetListResponse
|
|
SetResponse
|
|
DelResponse
|
|
HSetResponse
|
|
SetExpireResponse
|
|
SSetRequest
|
|
SMembersRequest
|
|
SSetResponse
|
|
LSetRequest
|
|
LSetResponse
|
|
LRangeRequest
|
|
LLenRequest
|
|
AddRequest
|
|
*/
|
|
package redisrpc
|
|
|
|
import proto "github.com/chai2010/protorpc/proto"
|
|
import math "math"
|
|
|
|
import "io"
|
|
import "log"
|
|
import "net"
|
|
import "net/rpc"
|
|
import "time"
|
|
import protorpc "github.com/chai2010/protorpc"
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = math.Inf
|
|
|
|
// 使用key查询
|
|
type GetRequest struct {
|
|
Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *GetRequest) Reset() { *m = GetRequest{} }
|
|
func (m *GetRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetRequest) ProtoMessage() {}
|
|
|
|
func (m *GetRequest) GetKey() string {
|
|
if m != nil && m.Key != nil {
|
|
return *m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// 设置key
|
|
type SetRequest struct {
|
|
Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
Value *string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
|
|
Ttl *int64 `protobuf:"varint,3,opt,name=ttl" json:"ttl,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *SetRequest) Reset() { *m = SetRequest{} }
|
|
func (m *SetRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*SetRequest) ProtoMessage() {}
|
|
|
|
func (m *SetRequest) GetKey() string {
|
|
if m != nil && m.Key != nil {
|
|
return *m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SetRequest) GetValue() string {
|
|
if m != nil && m.Value != nil {
|
|
return *m.Value
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SetRequest) GetTtl() int64 {
|
|
if m != nil && m.Ttl != nil {
|
|
return *m.Ttl
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type DelRequest struct {
|
|
Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *DelRequest) Reset() { *m = DelRequest{} }
|
|
func (m *DelRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*DelRequest) ProtoMessage() {}
|
|
|
|
func (m *DelRequest) GetKey() string {
|
|
if m != nil && m.Key != nil {
|
|
return *m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// 使用hash key查询
|
|
type HGetRequest struct {
|
|
Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
Field *string `protobuf:"bytes,2,opt,name=field" json:"field,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *HGetRequest) Reset() { *m = HGetRequest{} }
|
|
func (m *HGetRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*HGetRequest) ProtoMessage() {}
|
|
|
|
func (m *HGetRequest) GetKey() string {
|
|
if m != nil && m.Key != nil {
|
|
return *m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HGetRequest) GetField() string {
|
|
if m != nil && m.Field != nil {
|
|
return *m.Field
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// 设置hash key
|
|
type HSetRequest struct {
|
|
Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
Field *string `protobuf:"bytes,2,opt,name=field" json:"field,omitempty"`
|
|
Value *string `protobuf:"bytes,3,opt,name=value" json:"value,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *HSetRequest) Reset() { *m = HSetRequest{} }
|
|
func (m *HSetRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*HSetRequest) ProtoMessage() {}
|
|
|
|
func (m *HSetRequest) GetKey() string {
|
|
if m != nil && m.Key != nil {
|
|
return *m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HSetRequest) GetField() string {
|
|
if m != nil && m.Field != nil {
|
|
return *m.Field
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HSetRequest) GetValue() string {
|
|
if m != nil && m.Value != nil {
|
|
return *m.Value
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// 删除hash key
|
|
type HDelRequest struct {
|
|
Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
Field *string `protobuf:"bytes,2,opt,name=field" json:"field,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *HDelRequest) Reset() { *m = HDelRequest{} }
|
|
func (m *HDelRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*HDelRequest) ProtoMessage() {}
|
|
|
|
func (m *HDelRequest) GetKey() string {
|
|
if m != nil && m.Key != nil {
|
|
return *m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HDelRequest) GetField() string {
|
|
if m != nil && m.Field != nil {
|
|
return *m.Field
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// 有效期
|
|
type SetExpireRequest struct {
|
|
Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
Expire *int64 `protobuf:"varint,2,opt,name=expire" json:"expire,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *SetExpireRequest) Reset() { *m = SetExpireRequest{} }
|
|
func (m *SetExpireRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*SetExpireRequest) ProtoMessage() {}
|
|
|
|
func (m *SetExpireRequest) GetKey() string {
|
|
if m != nil && m.Key != nil {
|
|
return *m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SetExpireRequest) GetExpire() int64 {
|
|
if m != nil && m.Expire != nil {
|
|
return *m.Expire
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// 使用key查询响应结构
|
|
type GetStringResponse struct {
|
|
Value *string `protobuf:"bytes,1,opt,name=value" json:"value,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *GetStringResponse) Reset() { *m = GetStringResponse{} }
|
|
func (m *GetStringResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*GetStringResponse) ProtoMessage() {}
|
|
|
|
func (m *GetStringResponse) GetValue() string {
|
|
if m != nil && m.Value != nil {
|
|
return *m.Value
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// 使用key查询响应结构
|
|
type HGetListResponse struct {
|
|
List []byte `protobuf:"bytes,1,opt,name=list" json:"list,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *HGetListResponse) Reset() { *m = HGetListResponse{} }
|
|
func (m *HGetListResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*HGetListResponse) ProtoMessage() {}
|
|
|
|
func (m *HGetListResponse) GetList() []byte {
|
|
if m != nil {
|
|
return m.List
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// 设置key响应结构
|
|
type SetResponse struct {
|
|
Ret *string `protobuf:"bytes,1,opt,name=ret" json:"ret,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *SetResponse) Reset() { *m = SetResponse{} }
|
|
func (m *SetResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*SetResponse) ProtoMessage() {}
|
|
|
|
func (m *SetResponse) GetRet() string {
|
|
if m != nil && m.Ret != nil {
|
|
return *m.Ret
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// 删除key响应结构
|
|
type DelResponse struct {
|
|
Ret *int64 `protobuf:"varint,1,opt,name=ret" json:"ret,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *DelResponse) Reset() { *m = DelResponse{} }
|
|
func (m *DelResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*DelResponse) ProtoMessage() {}
|
|
|
|
func (m *DelResponse) GetRet() int64 {
|
|
if m != nil && m.Ret != nil {
|
|
return *m.Ret
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// 设置key响应结构
|
|
type HSetResponse struct {
|
|
Ret *int64 `protobuf:"varint,1,opt,name=ret" json:"ret,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *HSetResponse) Reset() { *m = HSetResponse{} }
|
|
func (m *HSetResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*HSetResponse) ProtoMessage() {}
|
|
|
|
func (m *HSetResponse) GetRet() int64 {
|
|
if m != nil && m.Ret != nil {
|
|
return *m.Ret
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// 设置key有效期
|
|
type SetExpireResponse struct {
|
|
Ret *int64 `protobuf:"varint,1,opt,name=ret" json:"ret,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *SetExpireResponse) Reset() { *m = SetExpireResponse{} }
|
|
func (m *SetExpireResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*SetExpireResponse) ProtoMessage() {}
|
|
|
|
func (m *SetExpireResponse) GetRet() int64 {
|
|
if m != nil && m.Ret != nil {
|
|
return *m.Ret
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// 集合添加值
|
|
type SSetRequest struct {
|
|
Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
Field *string `protobuf:"bytes,2,opt,name=field" json:"field,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *SSetRequest) Reset() { *m = SSetRequest{} }
|
|
func (m *SSetRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*SSetRequest) ProtoMessage() {}
|
|
|
|
func (m *SSetRequest) GetKey() string {
|
|
if m != nil && m.Key != nil {
|
|
return *m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SSetRequest) GetField() string {
|
|
if m != nil && m.Field != nil {
|
|
return *m.Field
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// 集合添加值
|
|
type SMembersRequest struct {
|
|
Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *SMembersRequest) Reset() { *m = SMembersRequest{} }
|
|
func (m *SMembersRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*SMembersRequest) ProtoMessage() {}
|
|
|
|
func (m *SMembersRequest) GetKey() string {
|
|
if m != nil && m.Key != nil {
|
|
return *m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// 设置响应结构
|
|
type SSetResponse struct {
|
|
Ret *int64 `protobuf:"varint,1,opt,name=ret" json:"ret,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *SSetResponse) Reset() { *m = SSetResponse{} }
|
|
func (m *SSetResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*SSetResponse) ProtoMessage() {}
|
|
|
|
func (m *SSetResponse) GetRet() int64 {
|
|
if m != nil && m.Ret != nil {
|
|
return *m.Ret
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// 列表添加值
|
|
type LSetRequest struct {
|
|
Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
Field *string `protobuf:"bytes,2,opt,name=field" json:"field,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *LSetRequest) Reset() { *m = LSetRequest{} }
|
|
func (m *LSetRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*LSetRequest) ProtoMessage() {}
|
|
|
|
func (m *LSetRequest) GetKey() string {
|
|
if m != nil && m.Key != nil {
|
|
return *m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *LSetRequest) GetField() string {
|
|
if m != nil && m.Field != nil {
|
|
return *m.Field
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// 设置key响应结构
|
|
type LSetResponse struct {
|
|
Ret *int64 `protobuf:"varint,1,opt,name=ret" json:"ret,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *LSetResponse) Reset() { *m = LSetResponse{} }
|
|
func (m *LSetResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*LSetResponse) ProtoMessage() {}
|
|
|
|
func (m *LSetResponse) GetRet() int64 {
|
|
if m != nil && m.Ret != nil {
|
|
return *m.Ret
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// 列表取值
|
|
type LRangeRequest struct {
|
|
Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
Start *int64 `protobuf:"varint,2,opt,name=start" json:"start,omitempty"`
|
|
Stop *int64 `protobuf:"varint,3,opt,name=stop" json:"stop,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *LRangeRequest) Reset() { *m = LRangeRequest{} }
|
|
func (m *LRangeRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*LRangeRequest) ProtoMessage() {}
|
|
|
|
func (m *LRangeRequest) GetKey() string {
|
|
if m != nil && m.Key != nil {
|
|
return *m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *LRangeRequest) GetStart() int64 {
|
|
if m != nil && m.Start != nil {
|
|
return *m.Start
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *LRangeRequest) GetStop() int64 {
|
|
if m != nil && m.Stop != nil {
|
|
return *m.Stop
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// 列表长度
|
|
type LLenRequest struct {
|
|
Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *LLenRequest) Reset() { *m = LLenRequest{} }
|
|
func (m *LLenRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*LLenRequest) ProtoMessage() {}
|
|
|
|
func (m *LLenRequest) GetKey() string {
|
|
if m != nil && m.Key != nil {
|
|
return *m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// 数值增加
|
|
type AddRequest struct {
|
|
Key *string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
Value *int64 `protobuf:"varint,2,opt,name=value" json:"value,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
|
|
func (m *AddRequest) Reset() { *m = AddRequest{} }
|
|
func (m *AddRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*AddRequest) ProtoMessage() {}
|
|
|
|
func (m *AddRequest) GetKey() string {
|
|
if m != nil && m.Key != nil {
|
|
return *m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AddRequest) GetValue() int64 {
|
|
if m != nil && m.Value != nil {
|
|
return *m.Value
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func init() {
|
|
}
|
|
|
|
type RedisService interface {
|
|
Get(in *GetRequest, out *GetStringResponse) error
|
|
Set(in *SetRequest, out *SetResponse) error
|
|
SetNx(in *SetRequest, out *DelResponse) error
|
|
Del(in *DelRequest, out *DelResponse) error
|
|
HGet(in *HGetRequest, out *GetStringResponse) error
|
|
HSet(in *HSetRequest, out *HSetResponse) error
|
|
HDel(in *HDelRequest, out *DelResponse) error
|
|
SetExpire(in *SetExpireRequest, out *SetExpireResponse) error
|
|
HGetAll(in *GetRequest, out *HGetListResponse) error
|
|
HGetList(in *GetRequest, out *HGetListResponse) error
|
|
HExists(in *HGetRequest, out *DelResponse) error
|
|
Exists(in *GetRequest, out *DelResponse) error
|
|
HIncrby(in *HSetRequest, out *HSetResponse) error
|
|
SAdd(in *SSetRequest, out *SSetResponse) error
|
|
SIsmember(in *SSetRequest, out *SSetResponse) error
|
|
SRem(in *SSetRequest, out *SSetResponse) error
|
|
LLpush(in *LSetRequest, out *LSetResponse) error
|
|
LRpush(in *LSetRequest, out *LSetResponse) error
|
|
LRange(in *LRangeRequest, out *HGetListResponse) error
|
|
LLen(in *LLenRequest, out *LSetResponse) error
|
|
ReduceStock(in *SetRequest, out *SetResponse) error
|
|
Incrby(in *AddRequest, out *SetResponse) error
|
|
Decrby(in *AddRequest, out *SetResponse) error
|
|
}
|
|
|
|
// AcceptRedisServiceClient accepts connections on the listener and serves requests
|
|
// for each incoming connection. Accept blocks; the caller typically
|
|
// invokes it in a go statement.
|
|
func AcceptRedisServiceClient(lis net.Listener, x RedisService) {
|
|
srv := rpc.NewServer()
|
|
if err := srv.RegisterName("RedisService", x); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
for {
|
|
conn, err := lis.Accept()
|
|
if err != nil {
|
|
log.Fatalf("lis.Accept(): %v\n", err)
|
|
}
|
|
go srv.ServeCodec(protorpc.NewServerCodec(conn))
|
|
}
|
|
}
|
|
|
|
// RegisterRedisService publish the given RedisService implementation on the server.
|
|
func RegisterRedisService(srv *rpc.Server, x RedisService) error {
|
|
if err := srv.RegisterName("RedisService", x); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// NewRedisServiceServer returns a new RedisService Server.
|
|
func NewRedisServiceServer(x RedisService) *rpc.Server {
|
|
srv := rpc.NewServer()
|
|
if err := srv.RegisterName("RedisService", x); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
return srv
|
|
}
|
|
|
|
// ListenAndServeRedisService listen announces on the local network address laddr
|
|
// and serves the given RedisService implementation.
|
|
func ListenAndServeRedisService(network, addr string, x RedisService) error {
|
|
lis, err := net.Listen(network, addr)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer lis.Close()
|
|
|
|
srv := rpc.NewServer()
|
|
if err := srv.RegisterName("RedisService", x); err != nil {
|
|
return err
|
|
}
|
|
|
|
for {
|
|
conn, err := lis.Accept()
|
|
if err != nil {
|
|
log.Fatalf("lis.Accept(): %v\n", err)
|
|
}
|
|
go srv.ServeCodec(protorpc.NewServerCodec(conn))
|
|
}
|
|
}
|
|
|
|
type RedisServiceClient struct {
|
|
*rpc.Client
|
|
}
|
|
|
|
// NewRedisServiceClient returns a RedisService rpc.Client and stub to handle
|
|
// requests to the set of RedisService at the other end of the connection.
|
|
func NewRedisServiceClient(conn io.ReadWriteCloser) (*RedisServiceClient, *rpc.Client) {
|
|
c := rpc.NewClientWithCodec(protorpc.NewClientCodec(conn))
|
|
return &RedisServiceClient{c}, c
|
|
}
|
|
|
|
func (c *RedisServiceClient) Get(in *GetRequest, out *GetStringResponse) error {
|
|
return c.Call("RedisService.Get", in, out)
|
|
}
|
|
func (c *RedisServiceClient) Set(in *SetRequest, out *SetResponse) error {
|
|
return c.Call("RedisService.Set", in, out)
|
|
}
|
|
func (c *RedisServiceClient) SetNx(in *SetRequest, out *DelResponse) error {
|
|
return c.Call("RedisService.SetNx", in, out)
|
|
}
|
|
func (c *RedisServiceClient) Del(in *DelRequest, out *DelResponse) error {
|
|
return c.Call("RedisService.Del", in, out)
|
|
}
|
|
func (c *RedisServiceClient) HGet(in *HGetRequest, out *GetStringResponse) error {
|
|
return c.Call("RedisService.HGet", in, out)
|
|
}
|
|
func (c *RedisServiceClient) HSet(in *HSetRequest, out *HSetResponse) error {
|
|
return c.Call("RedisService.HSet", in, out)
|
|
}
|
|
func (c *RedisServiceClient) HDel(in *HDelRequest, out *DelResponse) error {
|
|
return c.Call("RedisService.HDel", in, out)
|
|
}
|
|
func (c *RedisServiceClient) SetExpire(in *SetExpireRequest, out *SetExpireResponse) error {
|
|
return c.Call("RedisService.SetExpire", in, out)
|
|
}
|
|
func (c *RedisServiceClient) HGetAll(in *GetRequest, out *HGetListResponse) error {
|
|
return c.Call("RedisService.HGetAll", in, out)
|
|
}
|
|
func (c *RedisServiceClient) HGetList(in *GetRequest, out *HGetListResponse) error {
|
|
return c.Call("RedisService.HGetList", in, out)
|
|
}
|
|
func (c *RedisServiceClient) HExists(in *HGetRequest, out *DelResponse) error {
|
|
return c.Call("RedisService.HExists", in, out)
|
|
}
|
|
func (c *RedisServiceClient) Exists(in *GetRequest, out *DelResponse) error {
|
|
return c.Call("RedisService.Exists", in, out)
|
|
}
|
|
func (c *RedisServiceClient) HIncrby(in *HSetRequest, out *HSetResponse) error {
|
|
return c.Call("RedisService.HIncrby", in, out)
|
|
}
|
|
func (c *RedisServiceClient) SAdd(in *SSetRequest, out *SSetResponse) error {
|
|
return c.Call("RedisService.SAdd", in, out)
|
|
}
|
|
func (c *RedisServiceClient) SIsmember(in *SSetRequest, out *SSetResponse) error {
|
|
return c.Call("RedisService.SIsmember", in, out)
|
|
}
|
|
func (c *RedisServiceClient) SRem(in *SSetRequest, out *SSetResponse) error {
|
|
return c.Call("RedisService.SRem", in, out)
|
|
}
|
|
func (c *RedisServiceClient) LLpush(in *LSetRequest, out *LSetResponse) error {
|
|
return c.Call("RedisService.LLpush", in, out)
|
|
}
|
|
func (c *RedisServiceClient) LRpush(in *LSetRequest, out *LSetResponse) error {
|
|
return c.Call("RedisService.LRpush", in, out)
|
|
}
|
|
func (c *RedisServiceClient) LRange(in *LRangeRequest, out *HGetListResponse) error {
|
|
return c.Call("RedisService.LRange", in, out)
|
|
}
|
|
func (c *RedisServiceClient) LLen(in *LLenRequest, out *LSetResponse) error {
|
|
return c.Call("RedisService.LLen", in, out)
|
|
}
|
|
func (c *RedisServiceClient) ReduceStock(in *SetRequest, out *SetResponse) error {
|
|
return c.Call("RedisService.ReduceStock", in, out)
|
|
}
|
|
func (c *RedisServiceClient) Incrby(in *AddRequest, out *SetResponse) error {
|
|
return c.Call("RedisService.Incrby", in, out)
|
|
}
|
|
func (c *RedisServiceClient) Decrby(in *AddRequest, out *SetResponse) error {
|
|
return c.Call("RedisService.Decrby", in, out)
|
|
}
|
|
|
|
// DialRedisService connects to an RedisService at the specified network address.
|
|
func DialRedisService(network, addr string) (*RedisServiceClient, *rpc.Client, error) {
|
|
c, err := protorpc.Dial(network, addr)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
return &RedisServiceClient{c}, c, nil
|
|
}
|
|
|
|
// DialRedisServiceTimeout connects to an RedisService at the specified network address.
|
|
func DialRedisServiceTimeout(network, addr string,
|
|
timeout time.Duration) (*RedisServiceClient, *rpc.Client, error) {
|
|
c, err := protorpc.DialTimeout(network, addr, timeout)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
return &RedisServiceClient{c}, c, nil
|
|
}
|