Key constructs the full key for entity identified by ks by joining ks using the default separator.
(ks ...string)
| 80 | |
| 81 | // Key constructs the full key for entity identified by ks by joining ks using the default separator. |
| 82 | func Key(ks ...string) string { |
| 83 | return strings.Join(ks, string(separator)) |
| 84 | } |
| 85 | |
| 86 | // Client represents a Redis store client. |
| 87 | type Client struct { |
no test coverage detected