Set sets a key value of a specific session. The "immutable" input argument depends on the store, it may not implement it at all.
(sid string, key string, value interface{}, ttl time.Duration, immutable bool)
| 43 | // Set sets a key value of a specific session. |
| 44 | // The "immutable" input argument depends on the store, it may not implement it at all. |
| 45 | Set(sid string, key string, value interface{}, ttl time.Duration, immutable bool) error |
| 46 | // Get retrieves a session value based on the key. |
| 47 | Get(sid string, key string) interface{} |
| 48 | // Decode binds the "outPtr" to the value associated to the provided "key". |
no outgoing calls