Hi Igniters -
As far as I am known, igniteCache.put(K, V) will replace the value of K with V, but sometimes I just would like to update a specific field of V instead of the whole object. I know that I can update the specific field via igniteCache.query(SqlFieldsQuery), but how-ignite-sql-works writes that ignite will generate SELECT queries internally before UPDATE or DELETE a set of records, so it may not be as good as igniteCache.put(K, V), so is there a way can update a specific field without QUERY?
