https://github.com/vectrix-space/flare
Useful thread-safe collections with performance in mind for Java 8+.
https://github.com/vectrix-space/flare
collections hacktoberfest java java-library thread-safe
Last synced: about 1 year ago
JSON representation
Useful thread-safe collections with performance in mind for Java 8+.
- Host: GitHub
- URL: https://github.com/vectrix-space/flare
- Owner: vectrix-space
- License: mit
- Created: 2021-03-15T09:51:12.000Z (over 5 years ago)
- Default Branch: main/2
- Last Pushed: 2025-04-11T18:46:59.000Z (about 1 year ago)
- Last Synced: 2025-04-11T19:49:42.116Z (about 1 year ago)
- Topics: collections, hacktoberfest, java, java-library, thread-safe
- Language: Java
- Homepage:
- Size: 401 KB
- Stars: 24
- Watchers: 1
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: readme.md
- License: license.txt
Awesome Lists containing this project
README
Flare [](https://discord.gg/rYpaxPFQrj)
=====

[](license.txt)
[](https://search.maven.org/search?q=g:space.vectrix.flare%20AND%20a:flare*)

Useful thread-safe collections with performance in mind.
## Building
__Note:__ If you do not have [Gradle] installed then use `./gradlew` for Unix systems or Git Bash and gradlew.bat for Windows systems in place of any 'gradle' command.
In order to build Flare you simply need to run the `gradle build` command. You can find the compiled JAR file in `./flare/build/libs` or `./flare-fastutil/build/libs` labeled 'flare-2.0.1.jar' or 'flare-fastutil-2.0.1.jar'.
## Benchmarks
[SyncMap Benchmarks](https://github.com/vectrix-space/flare/tree/main/benchmark#readme)
## Dependency
Gradle:
```groovy
repositories {
mavenCentral()
}
dependencies {
implementation "space.vectrix.flare:flare:2.0.1"
implementation "space.vectrix.flare-fastutil:2.0.1"
}
```
Maven:
```xml
space.vectrix.flare
flare
2.0.1
space.vectrix.flare
flare-fastutil
2.0.1
```
## Credits
Various concepts inspired by [Go].
- [connorhartley]
- [astei]
Initially designed for [Mineteria](https://mineteria.com/).
[Go]: https://golang.org/
[connorhartley]: https://github.com/connorhartley
[astei]: https://github.com/astei
[Gradle]: https://www.gradle.org/