| 7461 | } |
| 7462 | |
| 7463 | static void* Python_DeserializeSession(Gears_BufferReader *br, char **err) { |
| 7464 | long version = RedisGears_BRReadLong(br); |
| 7465 | return PythonSessionCtx_Deserialize(br, version, err, false); |
| 7466 | } |
| 7467 | |
| 7468 | static void Python_UnlinkSession(const char* sessionId) { |
| 7469 | PythonSessionCtx* s = PythonSessionCtx_Get(sessionId); |
nothing calls this directly
no test coverage detected