Finds matching caches by a pattern and flushes a specific entry from them. @param pattern The pattern used for SQLHelper#getMatchingCaches(String) @param primaryKeys The primary keys used to access the entry
(String pattern, Object... primaryKeys)
| 113 | * @param primaryKeys The primary keys used to access the entry |
| 114 | */ |
| 115 | public void flushMatchingCaches(String pattern, Object... primaryKeys) { |
| 116 | getMatchingCaches(pattern).forEach(c -> c.flush(primaryKeys)); |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * Finds matching caches by a pattern and removes a specific entry from them. Useful for saving targeted |
nothing calls this directly
no test coverage detected