|
|
@ -536,7 +536,7 @@ type RedisService interface { |
|
|
|
SAdd(in *SSetRequest, out *SSetResponse) error |
|
|
|
SIsmember(in *SSetRequest, out *SSetResponse) error |
|
|
|
SRem(in *SSetRequest, out *SSetResponse) error |
|
|
|
SCard(in *SSetRequest, out *SSetResponse) error |
|
|
|
SCard(in *SMembersRequest, out *SSetResponse) error |
|
|
|
LLpush(in *LSetRequest, out *LSetResponse) error |
|
|
|
LRpush(in *LSetRequest, out *LSetResponse) error |
|
|
|
LRange(in *LRangeRequest, out *HGetListResponse) error |
|
|
@ -663,7 +663,7 @@ func (c *RedisServiceClient) SIsmember(in *SSetRequest, out *SSetResponse) error |
|
|
|
func (c *RedisServiceClient) SRem(in *SSetRequest, out *SSetResponse) error { |
|
|
|
return c.Call("RedisService.SRem", in, out) |
|
|
|
} |
|
|
|
func (c *RedisServiceClient) SCard(in *SSetRequest, out *SSetResponse) error { |
|
|
|
func (c *RedisServiceClient) SCard(in *SMembersRequest, out *SSetResponse) error { |
|
|
|
return c.Call("RedisService.SCard", in, out) |
|
|
|
} |
|
|
|
func (c *RedisServiceClient) LLpush(in *LSetRequest, out *LSetResponse) error { |
|
|
|