Hey there! Is there a maximum number of items tha...
# community-help
t
Hey there! Is there a maximum number of items that could be in a document field string array? For example, if I had a product with a tags array field - how many tags could I put in that field and still be able to query:
Copy code
tags:=SOME_TAG
I would assume there is some ceiling, but does anyone know what that number is?
k
👋 we don't have any restrictions.
t
awesome. would there be any performance degradation if the field string array size got into the 1,000's?
k
Don't think so because the array entities get stored as inverted index so length won't have performance impact so long tokens don't repeat too often.
t
great. thank you