ben-manes / concurrentlinkedhashmap

A ConcurrentLinkedHashMap for Java
Apache License 2.0
470 stars 113 forks source link

build failure... #46

Closed abhijitSingh86 closed 8 years ago

abhijitSingh86 commented 8 years ago

I am trying to build this project, but build is failing because of org.cachebench:cache-benchmark:jar jar not found. I checked in maven, but it is not there too. Let me know how to build this project

ben-manes commented 8 years ago

Sorry, moving to github the build notes were moved into NOTES. The cachebench jar has to be installed locally as it was a JBoss Cache tool that wasn't put on Central, but used when one of their developer's blogged about it. I think it was rebranded Railgun and I hadn't realized & upgraded.

Also note that you have to build using JDK6/7 due to the ConcurrentHashMapV8 method collisions with the default methods in Map. Alternately, you can safely remove that class and use ConcurrentHashMap.

ben-manes commented 8 years ago

Closing as the build instructions provide the command to install the lib/cache-benchmark jar locally. Please reopen if you run into any other build problems.