Currently the rooms kv storage is kinda clunky as it doesn't make searching for a specific room very efficient as the key is
["rooms", <owner_username>, <room_name>]
I'm thinking making another kv table that would just store the room name, maybe the creator as the value since we can easily query a room by a user with the existing implementation.
Currently the
rooms
kv storage is kinda clunky as it doesn't make searching for a specific room very efficient as the key isI'm thinking making another kv table that would just store the room name, maybe the creator as the value since we can easily query a room by a user with the existing implementation.