dancrew32 / marcel

The PHP 5.4 MVC with Shoes On: ActiveRecord, User/Session, Generators, SCSS, (Twitter Bootstrap) Integration, Workers, Cron Management, Image Manipulation, Caching, Git Management, Mail & Mail Parsing, OCR, Scraping, Selenium, Mustache, Markdown, Phone & Text Messaging, WebSockets, BitTorrent and much more!
5 stars 0 forks source link

use msgpack instead of serialize/unserialize #44

Closed dancrew32 closed 11 years ago

dancrew32 commented 11 years ago

http://msgpack.org

pecl install msgpack

$data = array(0=>1,1=>2,2=>3);
$msg = msgpack_pack($data);
$data = msgpack_unpack($msg);
dancrew32 commented 11 years ago

revisit this. installation process is fragile