reduce cache ttl to 3 seconds

This commit is contained in:
Kyle Spearrin 2020-08-27 14:58:34 -04:00
parent 42d5784ef3
commit 700e945008
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
import { CipherView } from '../view';
const CacheTTL = 5000;
const CacheTTL = 3000;
export class SortedCiphersCache {
private readonly sortedCiphersByUrl: Map<string, Ciphers> = new Map<string, Ciphers>();