Is there a way to specify different TTL for different CouchbaseCache objects in CouchBaseCacheManager?
@Cacheable("mycache")
public List<MyObject> findMyObjectsById(long id) {
return myrepo.findById(id);
}
How I make that List expire in cache after certain period of time...