(provenance_id: u64, todo_id: &str)
| 455 | /// the B-tree) matches numeric order, enabling correct prefix range scans. |
| 456 | #[inline] |
| 457 | pub fn encode_session_todo_key(provenance_id: u64, todo_id: &str) -> [u8; 16] { |
| 458 | let hash = blake3::hash(todo_id.as_bytes()); |
| 459 | let hash_bytes = hash.as_bytes(); |
| 460 | let mut key = [0u8; 16]; |
| 461 | key[0..8].copy_from_slice(&provenance_id.to_be_bytes()); |
| 462 | key[8..16].copy_from_slice(&hash_bytes[0..8]); |
| 463 | key |
| 464 | } |
| 465 | |
| 466 | /// Decode the `provenance_id` from a `SESSION_TODOS` key. |
| 467 | /// |