Please verify my understanding. I have a field called "category" and it has a value "computers". If I use this same field and value for all of my documents, it is really only stored on disk once because "category:computers" is a unique term. Is this correct?
But, what about multi-valued fields. So, I have a field called "category". For 100 documents, it has the values "computers" and "laptops". For 100 other documents, it has the values "computers" and "tablets". Is this stored as "category:computers", "category:laptops", "category:tablets", meaning 3 unique terms. Or is it stored as "category:computers,laptops" and "category:computers,tablets". I believe it is the first case (hopefully), but I am not sure. Thanks.