-
Enhancement
-
Resolution: Done
-
Major
-
9.1.3.Final, 9.2.0.Final
-
None
For JCache Remote, creating a cache requires checking first of the cache exists server side, and if not create one using admin operations.
From the server perspective, if the cache is not defined, a noisy exception is logged:
11:52:22,361 ERROR [org.infinispan.server.hotrod.CacheDecodeContext] (HotRod-ServerWorker-4-5) ISPN005003: Exception reported: org.infinispan.server.hotrod.CacheNotFoundException: Cache with name 'org.jsr107.tck.event.CacheListenerTest' not found amongst the configured caches
at org.infinispan.server.hotrod.CacheDecodeContext.obtainCache(CacheDecodeContext.java:289)
This is too noisy. The server should log something, on debug maybe but we should not treat this as an error. The client already knows that the cache returned is null, so it needs to create the cache in the server somehow, that should be enough.