Advanced Search
Search Results
2 total results found
Backing up and packing Plone's database file (Data.fs)
Programming and Web Development
Plone
Backing up the databaseSee “Backup Plone” and “Backup and recover Data.fs in linux” in Plone’s documentation.Additional notes: Recent versions of Repozo can compress (gzip) the backup files in addition to doing incremental backups. When doing full backups, Rep...
Speed of unpack() in PHP
Programming and Web Development
PHP
I needed to extract a list of integers from a binary string. I was curious to know if PHP’s unpack function is fast compared to a custom function, so I wrote a test for it.<?php$filename = '<some large file>';$unpack_time = 0.0;$unpack_time2 = 0.0;$un...