Does Spring Cache abstraction support multi-value queries?
Instead of:
@Cacheable("books") public Book findBook(ISBN isbn) {...}
Imagine a query that goes like this:
@Cacheable("books") public List< Book > findBook(List< ISBN > isbns) {...}
Is this supported? Will it individually cache each book returned in the collection?
Thanks!