(key string, group string)
| 423 | } |
| 424 | |
| 425 | func (c Client) xGroupCursorKey(key string, group string) keyDef { |
| 426 | return keyDef{pk: c.xGroupKey(key, group), sk: "_redimo/cursor"} |
| 427 | } |
| 428 | |
| 429 | func (c Client) xGroupKey(key string, group string) string { |
| 430 | return strings.Join([]string{"_redimo", key, group}, "/") |
no test coverage detected