When I try to create an attribute , it's showing attribute limit exceeded
ya...this is a limitation of the underlying db. do you really need somethign that is 10,000 or is longer okay?
nope , I just give it some default value. I didn't realize it. Thanks for pointing out
try longer than 16383. under 16383, a VARCHAR is used which takes up space in the row. starting at 16384, TEXT is used which is a pointer and takes up less space
that's so cool. I am just learning about varchar. But why go with the varchar in the first place if it takes more space
Varchar will take a less space as it will limit the size of the able to inserted into that attribute.
P.s. Char it's like Varchar but the length is not varying. the final different will be matter for indexing purposes
oh okay got it. Thank you
The attribute is getting created now. You can close the issue
[SOLVED] Attribute Limit Exceeded
Recommended threads
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...
- Get team fail in appwrite function
I try to get team of a user inside appwrite function, but i get this error: `AppwriteException: User (role: guests) missing scope (teams.read)` If i try on cl...