diff --git a/documentation/index.html b/documentation/index.html
index 22d5472c06..68c7e690e7 100644
--- a/documentation/index.html
+++ b/documentation/index.html
@@ -121,7 +121,7 @@ of sending a QUIT command to the server, the client can simply clos
client.destroy();
Node Redis v5 adds support for Client Side Caching, which enables clients to cache query results locally. The Redis server will notify the client when cached results are no longer valid.
-// Enable client side caching with RESP3
const client = createClient({
RESP: 3,
clientSideCache: {
ttl: 0, // Time-to-live (0 = no expiration)
maxEntries: 0, // Maximum entries (0 = unlimited)
evictPolicy: "LRU" // Eviction policy: "LRU" or "FIFO"
}
});
+// Enable client side caching with RESP3
const client = createClient({
RESP: 3,
clientSideCache: {
ttl: 0, // Time-to-live (0 = no expiration)
maxEntries: 0, // Maximum entries (0 = unlimited)
evictPolicy: "LRU" // Eviction policy: "LRU" or "FIFO"
}
});
See the V5 documentation for more details and advanced usage.
Auto-Pipelining
Node Redis will automatically pipeline requests that are made during the same "tick".
@@ -190,6 +190,10 @@ an error occurs, that error will be thrown and the Node.js process
+8.2.z
+:heavy_check_mark:
+
+
8.0.z
:heavy_check_mark: