X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=scripts%2Fshowcache.php;h=8ef08467d6be139dd2a50ee11670962cbeb30cf7;hb=424670a5ebf17a82046f304dea03c567094966f4;hp=fb0ccb5e03154e126cae43ab00f224f8ab04bf3a;hpb=aeca8807dbce951beccbc3fb0e5a4ae5600e5e5f;p=quix0rs-gnu-social.git diff --git a/scripts/showcache.php b/scripts/showcache.php index fb0ccb5e03..8ef08467d6 100644 --- a/scripts/showcache.php +++ b/scripts/showcache.php @@ -20,14 +20,14 @@ define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); -$shortoptions = "t:c:v:k:"; +$shortoptions = "t:l:v:k:"; $helptext = << shows the cached object based on the args -t table Table to look up - -c column Column to look up, default "id" + -l column Column to look up, default "id" -v value Value to look up -k key Key to look up; other args are ignored @@ -38,13 +38,13 @@ require_once INSTALLDIR.'/scripts/commandline.inc'; $karg = get_option_value('k'); if (!empty($karg)) { - $k = common_cache_key($karg); + $k = Cache::key($karg); } else { $table = get_option_value('t'); if (empty($table)) { die("No table or key specified\n"); } - $column = get_option_value('c'); + $column = get_option_value('l'); if (empty($column)) { $column = 'id'; } @@ -55,7 +55,7 @@ if (!empty($karg)) { print "Checking key '$k'...\n"; -$c = common_memcache(); +$c = Cache::instance(); if (empty($c)) { die("Can't initialize cache object!\n"); @@ -69,4 +69,3 @@ if (empty($obj)) { var_dump($obj); print "\n"; } -?>