For Live Coding Alliance's website I would like to create multiple live coding profiles to switch between for each Appwrite account; clearly I can't make a relation from one database to another. How am I supposed to reference accounts in collections? Do I just create a table in my database called account I reference by the account id and create my relations from there?
I could look up by id but it's a 10-byte/80-bit UID, which causes problems because with inode based databases like SQL/MariaDB it's fastest to search for 64-bit indexes. In my experience with distributed databases we use a 128-bit UID (preferably with a library like linearid that doesn't generate random numbers at runtime) and then pack them up contiguous 64-bit signed integers every x time units. Am I supposed to search through the database for a string? This is very slow with large databases.
Recommended threads
- I'm getting an error on the console "j?....
On my self hosted instance version 1.8.1 the console is giving me this error when trying to view the rows for a table I recently created. My application is read...
- Websites hosted on my appwrite sites hav...
Hello, all my websites hosted on appwrite sites are not running I am getting this message "This site can’t be reached drivehub.appwrite.network took too long t...
- Database Write Limits hit
Hello Appwrite Admins, I'm a GitHub Education user, and about a week ago, my database was really badly optimized, resulting in about 600k writes in a single day...