hiett commited on
Commit
ceb0280
·
1 Parent(s): 4e9f359

Recommend response encoding getting disabled due to Upstash updates

Browse files
Files changed (2) hide show
  1. .gitignore +3 -1
  2. README.md +1 -0
.gitignore CHANGED
@@ -29,4 +29,6 @@ srh-*.tar
29
 
30
  *.iml
31
 
32
- srh-config/
 
 
 
29
 
30
  *.iml
31
 
32
+ srh-config/
33
+
34
+ example/
README.md CHANGED
@@ -25,6 +25,7 @@ import {Redis} from '@upstash/redis';
25
  export const redis = new Redis({
26
  url: "http://localhost:8079",
27
  token: "example_token",
 
28
  });
29
  ```
30
  ---
 
25
  export const redis = new Redis({
26
  url: "http://localhost:8079",
27
  token: "example_token",
28
+ responseEncoding: false, // IMPORTANT: Upstash has recently added response encoding, but SRH does not support it yet.
29
  });
30
  ```
31
  ---