Skip to content

Instantly share code, notes, and snippets.

@blongden
blongden / redis-stats.php
Created March 16, 2012 16:22
Single page website to show statistics on a redis server
<?php
$fp = fsockopen('127.0.0.1', 6379, $errno, $errstr, 30);
$data = array();
if (!$fp) {
die($errstr);
} else {
fwrite($fp, "INFO\r\nQUIT\r\n");
while (!feof($fp)) {
class Fdrop_Plugin_AcceptHandler extends Zend_Controller_Plugin_Abstract
{
protected function getQuality($media)
{
$data = explode(";q=", $media);
return isset($data[1]) ? $data[1] : 1.0;
}
protected function sortMediaByQuality($a, $b)
{