I am trying DSE and Solr.
I started from the wikipedia example and i changed the Solr schema setting a field as stored only. I am amazed from the fact that stored fields (with indexed=false) are not persisted inside the Solr index, great feature!
I tried to execute a partial update on one document, changing the value of the stored-only field. I saw that the update triggers a Solr commit with a subsequent cache refresh.
I am just wondering if it make sense to avoid the Solr commit when stored-only fields are updated. Ideally it could improve query performance since caches are not regenerated.
What do you think? Is it something doable?
