Star Qin
Star Qin
**spring boot 2.6.0 按你给到的版本运行sample时:** ```java Description: Parameter 2 of method disruptor in com.lmax.disruptor.spring.boot.DisruptorAutoConfiguration required a single bean, but 2 were found: - applicationTaskExecutor: defined by method 'applicationTaskExecutor' in class path...
Hi, according to the introduction on the official website, I would like to use ms instead of ES. https://manual.manticoresearch.com/Quick_start_guide using self mysqlClient: create table products(title text, price float) morphology='stem_en'; insert...
由于@CreateCache 的expires,name,localExpire,localLimit 相对来说放在配置文件或从nacos读取最灵活,否则就得改代码发版。 建议支持从Nacos,或Spring 环境中拿到对应该的过期时间配置。 如 @CreateCache(configId="userlistKey") 则 jetcache.configkey.userlistKey= { name= "user.list",expires=100....}
在使用jetcache时,开启remote及多级缓存 。 由于配置了一些缓存key,value,但因为业务原因,需要提前变更,重新刷新后使用的新的配置。 虽然提供了@CacheRefresh,但时间是写死的。在刷新时间内,仍有本地脏缓存数据。 另一个@CacheInvalidate 也需要新写一个方法。比较麻烦。 于是,遇到以上问题,我们现在就是删除redis数据,重启每个服务。 希望提供2个方法,供手动列出并删除: GetAreaCacheKeys(... keys); invalidateCacheArea(... keys) 或是否有其他更简单的方法? by the way :像我们之前没转jetCache之前使用的 j2Cache 就有一个CacheChannel可以总管所有L1+L2对象key,value 可以将所有的area,及area下的key,全列出来,并可以指定某些key 通过redis topic/channel 将所有实例机器内存,及redis上的清除掉。
老兄,这工具挺不错的。在使用中遇到这2个问题。 1. -f 不支持多组模糊查询 ,如: ./nacos_check web --url http://10.0.5.157:8848 -f service,domain,gateway 2. 不支持指定namespaceid查询,主要因为我们的nacos 有namespace隔离,所以就会出现多个的情况,但真实网络却是隔离的,所以需要指定一个命名空间查询,并生成json,或web 如: ./nacos_check web --url http://10.0.5.157:8848 -a "3b19f3ca-6f5f-4d96-b7ff-a9116fa06f63" -b “DEMO环境” ```go func (d *Nacos) GetNameSpace() { if...