String max length

0
Hello,   The default value of a string attribute for max length is 200 character. I was wondering if reducing that max length could have a positive impact of the performance of the application? If so, can that impact be significant?   thanks
asked
1 answers
1

Reducing max string length does not have a significant effect on the application performance. The reserved space for a 200 character string is very little, and iterating such string values takes nanoseconds.

answered