Cache system.
CacheAPI constructor.
This variable stores in chache the user.
const api = new Candor.API({...});const cacheUser = api.cache.me;console.log(cacheUser); Copy
const api = new Candor.API({...});const cacheUser = api.cache.me;console.log(cacheUser);
This variable stores in chache the reviews.
const api = new Candor.API({...});const cacheReviews = api.cache.reviews.get("freelancerID");console.log(cacheReviews); Copy
const api = new Candor.API({...});const cacheReviews = api.cache.reviews.get("freelancerID");console.log(cacheReviews);
Cache system.