Merge pull request #315 from ukwa/fix-oracle-doc-link

Use the Wayback Machine to repair a link to Oracle docs.
This commit is contained in:
Alex Osborne
2020-03-05 01:40:39 +09:00
committed by GitHub
@@ -269,7 +269,7 @@ public class BdbModule implements Lifecycle, Checkpointable, Closeable, Disposab
config.setSharedCache(getUseSharedCache());
// we take the advice literally from...
// http://www.oracle.com/technology/products/berkeley-db/faq/je_faq.html#33
// https://web.archive.org/web/20100727081707/http://www.oracle.com/technology/products/berkeley-db/faq/je_faq.html#33
long nLockTables = getExpectedConcurrency()-1;
while(!BigInteger.valueOf(nLockTables).isProbablePrime(Integer.MAX_VALUE)) {
nLockTables--;