Hello, I've got a quick question regarding how the Tags are stored within a cache. Let's say there are lots of cached objects tagged the same way like "Men", "Shoes", "Sandals" (actually are categories). I've noticed that Tags are strings so wouldn't it better to use something like category ID (integer value) as Tags instead of the whole text keeping them as short as possible to minimize used memory or Tags are actually stored as a single dictionary with references to it and the example I've mentioned above doesn't consume much memory on Tags?
Thanks!