erlang-cherly 0.12.8+dfsg-1 source package in Ubuntu

Changelog

erlang-cherly (0.12.8+dfsg-1) unstable; urgency=low


  * New upstream release. (Closes: #707364)

 -- Nobuhiro Iwamatsu <email address hidden>  Mon, 03 Jun 2013 17:35:13 +0900

Upload details

Uploaded by:
LeoFS maintainers team
Uploaded to:
Sid
Original maintainer:
LeoFS maintainers team
Architectures:
any
Section:
misc
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
erlang-cherly_0.12.8+dfsg-1.dsc 2.1 KiB e0ff21d591d3f2535ad3f409e5078259fd9778bd165099ec5856eacb932465ea
erlang-cherly_0.12.8+dfsg.orig.tar.gz 28.0 KiB c8ce66feb9b8454ced878746cbf057b6e5970dabe25ead94e86b23519a50a390
erlang-cherly_0.12.8+dfsg-1.debian.tar.gz 3.6 KiB 86a38193c9f48ea6a5ccb4e2bcba1874a8d5fdc3e763780803f852e013a40a75

No changes file available.

Binary packages built by this source

erlang-cherly: Cherly (sher-lee) is an in-VM caching library for Erlang

 Cherly (sher-lee) was originally developed by Cliff Moon for erlang to deal
 with in memory caching based on LRU. Its functionality and performance were
 awesome, but as time goes on, its implementation gradually obsoletes and it's
 hard to maintain. To overcome these problems, I forked and made Cherly improve
 with original purposes. Main improvements are described below.
  * Replaced the hash storing structure (originally used Judy hash) with the
    combination of Open addressing and Tree structure based on golang's hash
    implementation. This structure is very scalable and stable.
  * Implemented slab allocator on off-heap.
  * Replaced implemantations of port driver with NIFs.
  * Rebarized