I need to store a potentially long list of strings associated with a custom object. I'm wondering if I'd be better off using a Key/Value object rather than storing the strings in the tags field of the object. The docs don't mention limits on field length. (The docs do say that using field names or values longer than 1024 bytes will prevent that field from being indexed. That's fine. I don't need to query against this field. I just don't want it truncated.)
Mongo document (object) limits are 16MB, older versions had a limit of 4MB, either of which would be more than sufficient for my needs. I'm just not sure if ACS imposes a stricter limit than those. (KeyValue objects are limited to 2MB, for example.)
Has anyone encountered a limit?