Updated readme + license

This commit is contained in:
nathan 2016-02-09 18:16:54 +01:00
parent 3705abf2ef
commit 36a0ad72c8
2 changed files with 19 additions and 8 deletions

View File

@ -1,9 +1,4 @@
- Dorkbox ObjectPool - Apache 2.0 License
https://github.com/dorkbox
Copyright 2014, dorkbox, llc
Fast (via unsafe) and compatible java object pool factory
- JCTools - Apache 2.0 License
https://github.com/JCTools/JCTools
Copyright 2013, JCTools, Nitsan Wakart
Fast and compatible java object pool

View File

@ -1,8 +1,7 @@
ObjectPool
==========
This provides an ObjectPool, for providing for a safe, and quick pool of objects of a specific size. This is only recommended in systems
were garbage collection is to be kept to a minimum, and the created objects are large.
This provides an ObjectPool, for providing for a safe, and fixed sized pool of objects. This is only recommended in systems were garbage collection is to be kept to a minimum, and the created objects are large.
- This is for cross-platform use, specifically - linux 32/64, mac 32/64, and windows 32/64. Java 6+
@ -37,3 +36,20 @@ Usage:
*/
int size();
```
<h4>We now release to maven!</h4>
```
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>ObjectPool</artifactId>
<version>1.7</version>
</dependency>
```
Or if you don't want to use Maven, you can access the files directly here:
https://oss.sonatype.org/content/repositories/releases/com/dorkbox/ObjectPool/