Releases: grandecola/bigqueue
Releases · grandecola/bigqueue
bigqueue v0.5.0
Bigqueue v0.5.0
- Bigqueue is thread safe now
- Bug fixes and performance optimizations
bigqueue v0.4.0
Changelog -
- Added offset API similar to Kafka
- Removed
Peek
API, useDequeue
instead
bigqueue v0.3.0
Changelog -
- Perform periodic data flush to disk
- Add optimized functions to write string data directly into bigqueue
bigqueue v0.2.0
Major addition in this release is support for limited memory use. Now, you can specify the max memory bigqueue is allowed to use to store the data in memory. Rest of the data resides on disk. This release also significantly optimises Dequeue
functions and improves code quality and code coverage.
bigqueue v0.1.0
This is the first release for the bigqueue library. It currently provides only single threaded support to read and write to the queue. Currently, all the data resides in memory all the time and there is no garbage collection facility available.