0
我一直在努力整合solr和apache ignite .....而我試圖運行該程序寫 類org.apache.ignite.IgniteCheckedException:無法啓用寫入後(編寫器或存儲未提供)爲緩存 此錯誤顯示爲 CacheConfiguration textMetaConfig = new CacheConfiguration <>(「textMetaCache」);我們可以使用solr作爲apache的點燃持久存儲嗎?
textMetaConfig.setWriteThrough(true);
textMetaConfig.setReadThrough(true);
textMetaConfig.setAtomicityMode(CacheAtomicityMode.ATOMIC);
textMetaConfig.setWriteBehindEnabled(true);
textMetaConfig.setWriteBehindFlushSize(40960);
textMetaConfig.setWriteBehindFlushFrequency(1);
textMetaConfig.setWriteBehindFlushThreadCount(5);
textMetaConfig.setCacheMode(CacheMode.PARTITIONED);
textMetaConfig.setIndexedTypes(String.class, TextMeta.class);
這是多麼我已經配置緩存