Swap out cache-manager for Keyv implementation.

Signed-off-by: Eric Peterson <ericpeterson@spotify.com>
This commit is contained in:
Eric Peterson
2021-05-09 17:00:59 +02:00
parent 884c2bd54f
commit d6936dcbde
8 changed files with 192 additions and 390 deletions
+5 -13
View File
@@ -75,19 +75,11 @@ export interface Config {
}
| {
store: 'memcache';
connection: {
/**
* An array of memcache hosts, optionally including a port number.
* e.g. 127.0.0.1:11211
*/
hosts: string[];
/**
* Number of milliseconds to wait before assuming there is a
* network timeout. Defaults to 500ms.
*/
netTimeout?: number;
};
/**
* A memcache connection string in the form `user:pass@host:port`.
* @secret
*/
connection: string;
};
cors?: {