组织ID: |
com.googlecode.concurrentlinkedhashmap |
项目ID: |
concurrentlinkedhashmap-lru |
版本: |
1.3.1 |
最后修改时间: |
2018-07-24 06:06:56 |
包类型: |
jar |
标题: |
ConcurrentLinkedHashMap |
描述: |
A high performance version of java.util.LinkedHashMap for use as a software cache.
|
相关URL: |
http://code.google.com/p/concurrentlinkedhashmap |
大小: |
53.16KB |
|
Maven引入代码: |
<dependency>
<groupId>com.googlecode.concurrentlinkedhashmap</groupId>
<artifactId>concurrentlinkedhashmap-lru</artifactId>
<version>1.3.1</version>
</dependency>
|
Gradle引入代码: |
com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.3.1
|
下载Jar包: |
|
POM文件内容: |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.googlecode.concurrentlinkedhashmap</groupId>
<artifactId>concurrentlinkedhashmap-lru</artifactId>
<packaging>jar</packaging>
<name>ConcurrentLinkedHashMap</name>
<version>1.3.1</version>
<description>
A high performance version of java.util.LinkedHashMap for use as a software cache.
</description>
<url>http://code.google.com/p/concurrentlinkedhashmap</url>
<inceptionYear>2008</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>http://concurrentlinkedhashmap.googlecode.com/svn/tags/concurrentlinkedhashmap-lru-1.3.1</url>
<connection>scm:svn:http://concurrentlinkedhashmap.googlecode.com/svn/tags/concurrentlinkedhashmap-lru-1.3.1</connection>
<developerConnection>scm:svn:https://concurrentlinkedhashmap.googlecode.com/svn/tags/concurrentlinkedhashmap-lru-1.3.1</developerConnection>
</scm>
<issueManagement>
<system>code.google.com</system>
<url>http://code.google.com/p/concurrentlinkedhashmap/issues</url>
</issueManagement>
<developers>
<developer>
<name>Ben Manes</name>
<email>ben.manes@gmail.com</email>
<organization>Google</organization>
<organizationUrl>http://www.google.com</organizationUrl>
<roles>
<role>owner</role>
<role>developer</role>
</roles>
<timezone>-8</timezone>
</developer>
</developers>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<properties>
<jdk.version>java16</jdk.version>
<java.version>1.6</java.version>
<targetJdk>${java.version}</targetJdk>
</properties>
<dependencies>
<dependency>
<groupId>com.google.caliper</groupId>
<artifactId>caliper</artifactId>
<version>0.5-rc1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>1.3.4</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.github.stephenc.high-scale-lib</groupId>
<artifactId>high-scale-lib</artifactId>
<version>1.1.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>12.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-core</artifactId>
<version>2.5.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.cachebench</groupId>
<artifactId>cache-benchmark</artifactId>
<version>r7903</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3.RC2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.0.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
<extensions>
<extension>
<groupId>org.jvnet.wagon-svn</groupId>
<artifactId>wagon-svn</artifactId>
<version>1.9</version>
</extension>
</extensions>
<plugins>
<!-- Java compiler -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<compilerArgument>-Xlint:all -Werror</compilerArgument>
</configuration>
</plugin>
<!-- Add OSGi Manifest metadata -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
<configuration>
<instructions>
<Export-Package>com.googlecode.concurrentlinkedhashmap.*</Export-Package>
</instructions>
</configuration>
</plugin>
<!-- Enforce JDK version compatibility -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.8</version>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>${jdk.version}-sun</artifactId>
<version>1.0</version>
</signature>
</configuration>
<executions>
<execution>
<id>check-${jdk.version}-sun</id>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Create source jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Bootstrap Unit Tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>src/test/resources/testng.yaml</suiteXmlFile>
</suiteXmlFiles>
<groups>development</groups>
</configuration>
</plugin>
<!-- Generates a Maven site -->
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.1</version>
<executions>
<execution>
<id>attach-descriptor</id>
<goals>
<goal>attach-descriptor</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.9</version>
<configuration>
<configLocation>src/test/resources/checkstyle.xml</configLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.3</version>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.7.1</version>
<configuration>
<verbose>true</verbose>
<!-- CPD duplication detection -->
<minimumTokens>120</minimumTokens>
<!-- Severity: highest = 0, lowest = 5 -->
<failurePriority>0</failurePriority>
<rulesets>
<ruleset>src/test/resources/pmd.xml</ruleset>
</rulesets>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.12</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<check>
<branchRate>85</branchRate>
<lineRate>85</lineRate>
<haltOnFailure>true</haltOnFailure>
<totalBranchRate>85</totalBranchRate>
<totalLineRate>85</totalLineRate>
<packageLineRate>85</packageLineRate>
<packageBranchRate>85</packageBranchRate>
<regexes>
<regex>
<pattern>com.googlecode.concurrentlinkedhashmap.*</pattern>
<branchRate>90</branchRate>
<lineRate>80</lineRate>
</regex>
</regexes>
</check>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>emma-maven-plugin</artifactId>
<version>1.0-alpha-3</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.5</version>
<configuration>
<threshold>Low</threshold>
<effort>Max</effort>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>2.4</version>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>cachebench</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<groups>cachebench</groups>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>caliper</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<groups>caliper</groups>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>development</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<groups>development</groups>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>efficiency</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<groups>efficiency</groups>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>load</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<groups>load</groups>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>perfHash</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<groups>perfHash</groups>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>experimental</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<groups>experimental</groups>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$1.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$AbstractTask.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$AddTask.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$BoundedEntryWeigher.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$Builder.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$DiscardingListener.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$DiscardingQueue.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$DrainStatus.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$EntryIterator.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$EntrySet.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$KeyIterator.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$KeySet.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$Node.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$ReadTask.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$RemovalTask.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$SerializationProxy.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$Task.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$UpdateTask.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$ValueIterator.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$Values.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$WeightedValue.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$WriteThroughEntry.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap.class
com.googlecode.concurrentlinkedhashmap.EntryWeigher.class
com.googlecode.concurrentlinkedhashmap.EvictionListener.class
com.googlecode.concurrentlinkedhashmap.GuardedBy.class
com.googlecode.concurrentlinkedhashmap.Immutable.class
com.googlecode.concurrentlinkedhashmap.Linked.class
com.googlecode.concurrentlinkedhashmap.LinkedDeque$1.class
com.googlecode.concurrentlinkedhashmap.LinkedDeque$2.class
com.googlecode.concurrentlinkedhashmap.LinkedDeque$AbstractLinkedIterator.class
com.googlecode.concurrentlinkedhashmap.LinkedDeque.class
com.googlecode.concurrentlinkedhashmap.NotThreadSafe.class
com.googlecode.concurrentlinkedhashmap.ThreadSafe.class
com.googlecode.concurrentlinkedhashmap.Weigher.class
com.googlecode.concurrentlinkedhashmap.Weighers$ByteArrayWeigher.class
com.googlecode.concurrentlinkedhashmap.Weighers$CollectionWeigher.class
com.googlecode.concurrentlinkedhashmap.Weighers$EntryWeigherView.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
caliper-0.5-rc1.jar
/com.google.caliper/caliper/0.5-rc1
查看caliper所有版本文件
awaitility-1.3.4.jar
/com.jayway.awaitility/awaitility/1.3.4
查看awaitility所有版本文件
high-scale-lib-1.1.4.jar
/com.github.stephenc.high-scale-lib/high-scale-lib/1.1.4
查看high-scale-lib所有版本文件
guava-12.0.jar
/com.google.guava/guava/12.0
查看guava所有版本文件
commons-lang-2.5.jar
/commons-lang/commons-lang/2.5
查看commons-lang所有版本文件
ehcache-core-2.5.2.jar
/net.sf.ehcache/ehcache-core/2.5.2
查看ehcache-core所有版本文件
cache-benchmark-r7903.jar
/org.cachebench/cache-benchmark/r7903
查看cache-benchmark所有版本文件
hamcrest-library-1.3.RC2.jar
/org.hamcrest/hamcrest-library/1.3.RC2
查看hamcrest-library所有版本文件
mockito-all-1.9.0.jar
/org.mockito/mockito-all/1.9.0
查看mockito-all所有版本文件
testng-6.0.1.jar
/org.testng/testng/6.0.1
查看testng所有版本文件
|