You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 9, 2020. It is now read-only.
This is my API.According to the document.The difference in the incoming "EvictProvider "can achieve the purpose of a selective cleanup cache.
For Example:
If I pass in "EvictDynamicKeyGroup", he will clear the cache in detail (key1,key2).
If I pass in "EvictDynamicKey", he will clear all caches under (key1).
If I pass in "EvictProvider", he will clear all caches under the API.
But what I'm trying to do is, regardless of what I'm passing in, he's just going to clear a cache of exactly what's going on (key1, key2)?
RequestFactory.getStartCacheRequest().testCacheForOneClearGroupTwoWith(new
HttpRxObservable<LoginUsr>().getObservable(RequestFactory.getStartRequest()
.testForOne(token), provider), new DynamicKeyGroup(key, keyTwo), new
EvictDynamicKey(isClear)).subscribe(StartObserverRepository.testForOneObserver
(provider, callBack));
RequestFactory.getStartCacheRequest().testCacheForOneClearGroupTwoWith(new
HttpRxObservable<LoginUsr>().getObservable(RequestFactory.getStartRequest()
.testForOne(token), provider), new DynamicKeyGroup(key, keyTwo), new
EvictProvider(isClear)).subscribe(StartObserverRepository.testForOneObserver
(provider, callBack));
This is my API.According to the document.The difference in the incoming "EvictProvider "can achieve the purpose of a selective cleanup cache.
For Example:
If I pass in "EvictDynamicKeyGroup", he will clear the cache in detail (key1,key2).
If I pass in "EvictDynamicKey", he will clear all caches under (key1).
If I pass in "EvictProvider", he will clear all caches under the API.
But what I'm trying to do is, regardless of what I'm passing in, he's just going to clear a cache of exactly what's going on (key1, key2)?