Dalli v0.9.9 Release Notes

    • Add support for *_multi operations for add, set, replace and delete. This implements pipelined network operations; Dalli disables network replies so we're not limited by latency, allowing for much higher throughput.

      dc = Dalli::Client.new dc.multi do dc.set 'a', 1 dc.set 'b', 2 dc.set 'c', 3 dc.delete 'd' end

    • Minor fix to set the continuum sorted by value (kangster)

    • Implement session store with Rails 2.3. Update docs.