https://github.com/olyutorskii/phiphoj
PhiPhoJ is primitive-typed array based ring buffer Java library.
https://github.com/olyutorskii/phiphoj
fifo java library ring-buffer
Last synced: 3 days ago
JSON representation
PhiPhoJ is primitive-typed array based ring buffer Java library.
- Host: GitHub
- URL: https://github.com/olyutorskii/phiphoj
- Owner: olyutorskii
- License: mit
- Created: 2020-11-05T13:26:55.000Z (over 5 years ago)
- Default Branch: develop
- Last Pushed: 2025-02-01T04:53:36.000Z (over 1 year ago)
- Last Synced: 2025-02-01T05:23:35.632Z (over 1 year ago)
- Topics: fifo, java, library, ring-buffer
- Language: Java
- Homepage:
- Size: 88.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
- Security: SECURITY.md
Awesome Lists containing this project
README
# PhiphoJ #


-----------------------------------------------------------------------
## What is PhiphoJ ? ##
* **PhiphoJ** is a Java library
that supports primitive-type array based ring buffer.
* It's not generics container like java.util.Queue<E>.
There is no boxing/unboxing. It's GC-friendly.
* It provides fast random access in ring buffer.
* Ring buffers are also called Circular buffer, FIFO or Queue.
## How to build ##
* PhiphoJ needs to use [Maven 3.3.9+](https://maven.apache.org/)
and JDK 1.8+ to be built.
* PhiphoJ runtime does not depend on any other library at all.
Just compile Java sources under `src/main/java/`
if you don't use Maven nor JUnit.
## License ##
* Code is under [The MIT License][MIT].
## Project founder ##
* By [Olyutorskii](https://github.com/olyutorskii) at 2020
## Key technology ##
- [Circular buffer][CRB]
[MIT]: https://opensource.org/licenses/MIT
[CRB]: https://en.wikipedia.org/wiki/Circular_buffer
--- EOF ---