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
The src of the version 1.0.0-beta2 from maven are different from those from github.
especially, the constructor of RedisCache, as follow:
pool = new JedisPool(redisConfig, redisConfig.getHost(), redisConfig.getPort(), redisConfig.getConnectionTimeout(), redisConfig.getSoTimeout(), redisConfig.getPassword(), redisConfig.getDatabase(), redisConfig.getClientName());
which is not avaliable constructor of JedisPool of version 2.9.0...
or, is there anything i misunderstood?
The text was updated successfully, but these errors were encountered:
1.0.0-beta2 was compiled against Jedis-2.8.0. Please try 1.0.0-beta3-SNAPSHOT.
If you are using Maven, you may need to add a snapshot repository to your pom.xml. https://github.com/mybatis/mybatis-3/wiki/Maven#snapshot And the binary is here. https://oss.sonatype.org/content/repositories/snapshots/org/mybatis/caches/mybatis-redis/1.0.0-beta3-SNAPSHOT/
Sorry, something went wrong.
Thanks a lot.
No branches or pull requests
The src of the version 1.0.0-beta2 from maven are different from those from github.
especially, the constructor of RedisCache, as follow:
pool = new JedisPool(redisConfig, redisConfig.getHost(), redisConfig.getPort(),
redisConfig.getConnectionTimeout(), redisConfig.getSoTimeout(), redisConfig.getPassword(),
redisConfig.getDatabase(), redisConfig.getClientName());
which is not avaliable constructor of JedisPool of version 2.9.0...
or, is there anything i misunderstood?
The text was updated successfully, but these errors were encountered: