Skip to content
This repository was archived by the owner on Nov 22, 2023. It is now read-only.

Commit db316f0

Browse files
committed
next js caching
1 parent 32b0fbc commit db316f0

File tree

15 files changed

+6560
-0
lines changed

15 files changed

+6560
-0
lines changed

bull/package-lock.json

+1,055
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bull/package.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "bull",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"author": "",
10+
"license": "ISC",
11+
"dependencies": {
12+
"bull": "^3.22.4"
13+
}
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
REDIS_URL=

next-caching-with-redis/.gitignore

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
17+
18+
# misc
19+
.DS_Store
20+
*.pem
21+
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
27+
# local env files
28+
.env.local
29+
.env.development.local
30+
.env.test.local
31+
.env.production.local
32+
33+
# vercel
34+
.vercel

next-caching-with-redis/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## Speed up your Next.js application using Serverless Redis
2+
3+
See [the app](https://next-caching-with-redis.vercel.app/) and see [the blog post](https://blog.upstash.com/nextjs-caching-with-redis)

0 commit comments

Comments
 (0)