我需要创建一个 ScanOptions 的实例。正确的代码如下。
String pattern = "mykeyprefix_*";
Long cnt = 2000L;
ScanOptions options = ScanOptions.scanOptions().match(pattern).count(cnt).build();
我的问题是为什么不直接使用构造函数来创建对象?
scanOptions = new ScanOptions(parttern, cnt);
还是使用对象工厂创建实例?
options = ScanOptionsFactory.create(parttern, cnt);
那么将代码设计为第一种情况有什么好处吗?你能详细解释一下吗?非常感谢!这是弹簧源代码:
org.springframework.data.redis.core.ScanOptions
莫回无
慕容3067478
相关分类