SessionKey returns the key used to store a session document format: _sync:session:{m_$}:{sessionID}
(sessionID string)
| 322 | // |
| 323 | // format: _sync:session:{m_$}:{sessionID} |
| 324 | func (m *MetadataKeys) SessionKey(sessionID string) string { |
| 325 | return m.sessionPrefix + sessionID |
| 326 | } |
| 327 | |
| 328 | // BackgroundProcessHeartbeatPrefix returns the prefix used to store background process heartbeats. |
| 329 | // |