Configuration as shown:
Business code:
The cache has never been able to obtain data, and it has always been queried from the database.
I changed
Cache::store('redis')->set('table_members_'.$tableId,$list); to
Cache::set('table_members_'. $tableId,$list); the execution will be normal.
Explains that the default cache is executable.
I modified the configuration as follows:
The business is also normal, but it is inconsistent with the instructions in the official website document