The new PECL package igbinary-3.2.2RC1 (beta) has been released at 
https://pecl.php.net/.

Release notes
-------------
* Update php version check to allow igbinary to be statically built in PHP 8.0+
* Fix bug in out of memory error handling in __sleep, slightly speed up 
serializing with __sleep.
* Continue serializing remaining properties if a missing property name is 
returned from __sleep.
* Speed up serializing by optimizing for the case where there is no memory 
manager override.
  When there is a memory manager override, only use that for allocating the 
string to return.
  (benchmarks/serialize-scalar-int.b.php showed a speedup from 0.22 to 0.18 
seconds for repeated serialization of a single scalar,
  and from 0.186 to 0.180 seconds for benchmarks/serialize-stringarray.b.php 
for an array of strings)
* Speed up unserializing arrays in php 7.2-8.0 by adding optimized code for 
finding the hash bucket of
  a string/integer key of an array, or creating a placeholder if it does not 
already exist.

Package Info
-------------
Igbinary is a drop in replacement for the standard php serializer. Instead of
        time and space consuming textual representation, igbinary stores php 
data
        structures in a compact binary form. Savings are significant when using
        memcached or similar memory based storages for serialized data.

Related Links
-------------
Package home: https://pecl.php.net/package/igbinary
   Changelog: https://pecl.php.net/package-changelog.php?package=igbinary
    Download: https://pecl.php.net/get/igbinary-3.2.2RC1.tgz

Authors
-------------
Oleg Grenrus <oleg.gren...@iki.fi> (lead)
Pierre Joye (lead)
Teddy Grenman (lead)
Tyson Andre (lead)

-- 
PECL development discussion Mailing List (https://pecl.php.net/)
To unsubscribe, visit: https://www.php.net/unsub.php

Reply via email to