Base on this file: https://github.com/parse-community/parse-server/blob/master/src/Adapters/Cache/RedisCacheAdapter.js
Modified RedisCacheAdapter due to performace issue. parse-community/parse-server#5401
npm i lru-custom-redis-cache-adapter
import { RedisCacheAdapter } from 'lru-custom-redis-cache-adapter';
const parseServer = new ParseServer({
/// Other options
cacheAdapter: new RedisCacheAdapter({ url: process.env.REDIS_URL });
});