Close closes the Redis connection
()
| 121 | |
| 122 | // Close closes the Redis connection |
| 123 | func (c *RedisCursorCache) Close() error { |
| 124 | return c.client.Close() |
| 125 | } |
| 126 | |
| 127 | // MemoryCursorCache uses in-memory LRU as fallback |
| 128 | type MemoryCursorCache struct { |