We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d92d935 commit fe99df4Copy full SHA for fe99df4
src/express-session-etcd3.ts
@@ -17,11 +17,17 @@ export const maxTTL = 6442450
17
*/
18
export interface Etcd3StoreOptions extends IOptions {
19
/**
20
- * Prefix used to record the keys of all the sessions
+ * Prefix used to record the keys of all the sessions.
21
*
22
* Defaults to `sess`.
23
24
prefix?: string
25
+ /**
26
+ * Option to skip touching process that express does every time it reads the session.
27
+ * This is useful if you work with big TTL and wanna free your ETCD from this extra access.
28
+ *
29
+ * Defaults to `false`.
30
+ */
31
skipTouch?: boolean
32
}
33
0 commit comments