Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
251 Bytes
// @flow
import TagCache from 'redis-tag-cache';
const DEFAULT_REDIS_OPTIONS = {
keyPrefix: 'query-cache',
};
const queryCache = new TagCache({
defaultTimeout: 86400,
redis: {
...DEFAULT_REDIS_OPTIONS,
},
});
export default queryCache;