We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
org/opengoofy/index12306/biz/userservice/service/impl/UserLoginServiceImpl.java 代码片段
@Override public Boolean hasUsername(String username) { boolean hasUsername = userRegisterCachePenetrationBloomFilter.contains(username); if (hasUsername) { StringRedisTemplate instance = (StringRedisTemplate) distributedCache.getInstance(); return instance.opsForSet().isMember(USER_REGISTER_REUSE_SHARDING + hashShardingIdx(username), username); } return true; }
!instance.opsForSet().isMember(USER_REGISTER_REUSE_SHARDING + hashShardingIdx(username), username);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
org/opengoofy/index12306/biz/userservice/service/impl/UserLoginServiceImpl.java
代码片段
!instance.opsForSet().isMember(USER_REGISTER_REUSE_SHARDING + hashShardingIdx(username), username);
,表示username已复用;故感觉逻辑不正确,若我理解错误,请多指教。
The text was updated successfully, but these errors were encountered: