├── .gitignore ├── LICENSE ├── README.md ├── dist ├── clusterPipeline.d.ts ├── clusterPipeline.js ├── index.d.ts └── index.js ├── images ├── Physics_wallah-2.webp ├── api1_avg_latency.png ├── api1_p95_latency.png ├── api1_p99_latency.png ├── api1_tpm.png ├── api2_avg_latency.png ├── api2_p95_latency.png ├── api2_p99_latency.png ├── images.jpeg ├── onebyone_latency.png ├── parallel_latency.png ├── pw-1.webp ├── pw-3.jpeg └── pw.jpg ├── package.json ├── src ├── clusterPipeline.ts └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.vscode 3 | .env 4 | /coverage/ 5 | /node_modules/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/README.md -------------------------------------------------------------------------------- /dist/clusterPipeline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/dist/clusterPipeline.d.ts -------------------------------------------------------------------------------- /dist/clusterPipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/dist/clusterPipeline.js -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './clusterPipeline'; 2 | -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/dist/index.js -------------------------------------------------------------------------------- /images/Physics_wallah-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/images/Physics_wallah-2.webp -------------------------------------------------------------------------------- /images/api1_avg_latency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/images/api1_avg_latency.png -------------------------------------------------------------------------------- /images/api1_p95_latency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/images/api1_p95_latency.png -------------------------------------------------------------------------------- /images/api1_p99_latency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/images/api1_p99_latency.png -------------------------------------------------------------------------------- /images/api1_tpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/images/api1_tpm.png -------------------------------------------------------------------------------- /images/api2_avg_latency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/images/api2_avg_latency.png -------------------------------------------------------------------------------- /images/api2_p95_latency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/images/api2_p95_latency.png -------------------------------------------------------------------------------- /images/api2_p99_latency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/images/api2_p99_latency.png -------------------------------------------------------------------------------- /images/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/images/images.jpeg -------------------------------------------------------------------------------- /images/onebyone_latency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/images/onebyone_latency.png -------------------------------------------------------------------------------- /images/parallel_latency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/images/parallel_latency.png -------------------------------------------------------------------------------- /images/pw-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/images/pw-1.webp -------------------------------------------------------------------------------- /images/pw-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/images/pw-3.jpeg -------------------------------------------------------------------------------- /images/pw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/images/pw.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/package.json -------------------------------------------------------------------------------- /src/clusterPipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/src/clusterPipeline.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './clusterPipeline'; -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech-pw/pw-redis/HEAD/tsconfig.json --------------------------------------------------------------------------------