Skip to content

Commit

Permalink
remove non-ascii comments
Browse files Browse the repository at this point in the history
  • Loading branch information
yangbodong22011 committed Apr 6, 2023
1 parent 2c07696 commit 3dec818
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class FullTextSearch {
private static final JedisPoolConfig config = new JedisPoolConfig();

static {
// 参数设置最佳实践可参考:https://help.aliyun.com/document_detail/98726.html
// JedisPool config: https://help.aliyun.com/document_detail/98726.html
config.setMaxTotal(32);
config.setMaxIdle(32);
config.setMaxIdle(20);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class MultiIndexSearch {
private static final JedisPoolConfig config = new JedisPoolConfig();

static {
// 参数设置最佳实践可参考:https://help.aliyun.com/document_detail/98726.html
// JedisPool config: https://help.aliyun.com/document_detail/98726.html
config.setMaxTotal(32);
config.setMaxIdle(32);
config.setMaxIdle(20);
Expand Down

0 comments on commit 3dec818

Please sign in to comment.