TeslaCN opened a new issue, #24778:
URL: https://github.com/apache/shardingsphere/issues/24778
## Refactor
Related to #24363.
Sharding cache rule is an plugin for sharding rule. But sharding cache rule
could not be used without sharding rule. I'm going to merge it into sharding
rule.
Before:
```yaml
rules:
- !SHARDING_CACHE
allowedMaxSqlLength: 512
routeCache:
initialCapacity: 65536
maximumSize: 262144
softValues: true
```
After:
```yaml
rules:
- !SHARDING
tables:
shardingAlgorithms:
shardingCache:
allowedMaxSqlLength: 512
routeCache:
initialCapacity: 65536
maximumSize: 262144
softValues: true
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail:
[email protected]
For queries about this service, please contact Infrastructure at:
[email protected]