Is it possible to enable caching using normal caching provider for all tables without doing the autoquery requests yourself. E.g. I want to cache on read and on insert, update, delete I want to invalidate the cache. The idea is to allow full text search using redisearch where the created index will automatically index the created hashes in redis. Alternatively I can tie into each(or certain) post/patch/put/delete event or hook into the crudevents to create a full text index for e.g. for redisearch/elasticsearch/typesense etc.
Thanks