• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP memcache_pconnect函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中memcache_pconnect函数的典型用法代码示例。如果您正苦于以下问题:PHP memcache_pconnect函数的具体用法?PHP memcache_pconnect怎么用?PHP memcache_pconnect使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了memcache_pconnect函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: pdb_get_data

function pdb_get_data($key, $provider, $arguments = [])
{
    $mc_handler = memcache_pconnect(MC_HOST);
    $value = memcache_get($mc_handler, $key);
    if ($value !== false) {
        return $value;
    } else {
        $locking_key = 'lock_' . $key;
        $locking_value = microtime(true);
        for ($i = 0; $i < MC_LOCK_DELAY * 1000 / MC_SLEEP_TIME + 1; $i++) {
            $lock = memcache_add($mc_handler, $locking_key, $locking_value, 0, MC_LOCK_DELAY);
            if ($lock) {
                $value = call_user_func_array($provider, $arguments);
                memcache_set($mc_handler, $key, $value);
                memcache_delete($mc_handler, $locking_key);
                return $value;
            } else {
                usleep(MC_SLEEP_TIME);
                $value = memcache_get($mc_handler, $key);
                if ($value != false) {
                    return $value;
                }
            }
        }
    }
    return call_user_func_array($provider, $arguments);
}
开发者ID:plFlok,项目名称:vk_test_task,代码行数:27,代码来源:db_cache_proxy.php


示例2: _cache_init

function _cache_init()
{
    global $config;
    global $_mch;
    if (!is_null($_mch)) {
        return;
    }
    $_mch = memcache_pconnect($config['memcache']['host']);
}
开发者ID:senko,项目名称:rfx,代码行数:9,代码来源:cache.php


示例3: __construct

 /**
  * Accepts the 2-d array with details of memcached servers
  *
  * @param array $servers
  */
 protected function __construct(array $servers)
 {
     if (!$servers) {
         trigger_error('No memcache servers to connect', E_USER_WARNING);
     }
     for ($i = 0, $n = count($servers); $i < $n; ++$i) {
         ($con = memcache_pconnect(key($servers[$i]), current($servers[$i]))) && ($this->mc_servers[] = $con);
     }
     $this->mc_servers_count = count($this->mc_servers);
     if (!$this->mc_servers_count) {
         $this->mc_servers[0] = null;
     }
 }
开发者ID:dnerezov,项目名称:paper-boot-dev-pad,代码行数:18,代码来源:memcache.php


示例4: mcached_conn

function mcached_conn()
{
    global $config, $mem_flag, $mem_conn;
    if ($mem_flag != 1) {
        if ($config['mcache']['version'] == 0) {
            $mem_conn = memcache_pconnect($config['mcache']['host'], 11211);
        } else {
            $mem_conn = new Memcached();
            $mem_conn->addServer($config['mcache']['host'], 11211);
        }
        $mem_flag = 1;
    }
    return $mem_conn;
}
开发者ID:laiello,项目名称:po-php-fwlite,代码行数:14,代码来源:db.func.php


示例5: delete_search_keys

 function delete_search_keys()
 {
     $dbh = new PDO('mysql:dbname=' . AppConfig::gacv("AC_db") . ';host=' . AppConfig::gacv("AC_server"), AppConfig::gacv("AC_user"), AppConfig::gacv("AC_pass"));
     $memcache_obj = memcache_pconnect('localhost', 11211);
     $sql = sprintf("select search_key from %s ", "memcache_search_keys");
     $sth = $dbh->prepare($sql, array(PDO::ATTR_CURSOR, PDO::CURSOR_FWDONLY));
     //
     $sth->execute();
     $res = $sth->fetchAll(PDO::FETCH_BOTH);
     //echo $sql.$this->lookup_tbl_id_col;//
     foreach ($res as $ar) {
         memcache_delete($memcache_obj, $ar["search_key"], 0);
     }
     /* Delete all rows from the FRUIT table */
     $count = $dbh->exec("DELETE FROM memcache_search_keys");
 }
开发者ID:awgtek,项目名称:myedb,代码行数:16,代码来源:memcache_search_key.php


示例6: MCache_connect

function MCache_connect($name)
{
    // use link for adding connection into global $Config
    $settings =& loadConfig('memcache')['memcache'][$name];
    // get connect if it already exists
    if (!is_null($settings['connect'])) {
        return $settings['connect'];
    }
    $mcConnect = memcache_pconnect($settings['hostname'], $settings['port']);
    if (!$mcConnect) {
        exit("Memcache connect error.");
    }
    // remember connection
    $settings['connect'] = $mcConnect;
    return $mcConnect;
}
开发者ID:Archerol,项目名称:booking,代码行数:16,代码来源:memcache.php


示例7: __construct

 public function __construct($queueName = '', $maxqueue = 1, $canRewrite = false, $expire = 0, $config = '')
 {
     if (empty($config)) {
         self::$client = memcache_pconnect('127.0.0.1', 11211);
     } elseif (is_array($config)) {
         //array('host'=>'127.0.0.1','port'=>'11211')
         self::$client = memcache_pconnect($config['host'], $config['port']);
     } elseif (is_string($config)) {
         //"127.0.0.1:11211"
         $tmp = explode(':', $config);
         $conf['host'] = isset($tmp[0]) ? $tmp[0] : '127.0.0.1';
         $conf['port'] = isset($tmp[1]) ? $tmp[1] : '11211';
         self::$client = memcache_pconnect($conf['host'], $conf['port']);
     }
     if (!self::$client) {
         return false;
     }
     ignore_user_abort(true);
     //当客户断开连接,允许继续执行
     set_time_limit(0);
     //取消脚本执行延时上限
     $this->access = false;
     $this->sleepTime = 1000;
     $expire = empty($expire) ? 0 : (int) $expire + 1;
     $this->expire = $expire;
     $this->queueName = $queueName;
     $this->retryNum = 20000;
     $this->MAXNUM = $maxqueue != null ? $maxqueue : 1;
     $this->canRewrite = $canRewrite;
     $this->getHeadAndTail();
     if (!isset($this->HEAD) || empty($this->HEAD)) {
         $this->HEAD = 0;
     }
     if (!isset($this->TAIL) || empty($this->TAIL)) {
         $this->TAIL = 0;
     }
     if (!isset($this->LEN) || empty($this->LEN)) {
         $this->LEN = 0;
     }
 }
开发者ID:herrify,项目名称:asyn,代码行数:40,代码来源:memcache.php


示例8: cache_connect

function cache_connect()
{
    if (!cfg('memcache/enabled')) {
        return false;
    }
    if (isset($GLOBALS['obj']) && $GLOBALS['obj']['memcache']) {
        return true;
    }
    $mcUrl = explode(':', cfg('memcache/server'));
    $mc = null;
    $GLOBALS['errorhandler_ignore'] = true;
    $mc = @memcache_pconnect($mcUrl[0], $mcUrl[1] + 0);
    $GLOBALS['errorhandler_ignore'] = false;
    if ($mc === false) {
        $GLOBALS['config']['memcache']['enabled'] = false;
        $GLOBALS['errors']['memcache'] = 'Could not connect to memcache server ' . cfg('memcache/server');
        logError('', 'memcache: could not connect to server ' . cfg('memcache/server'));
        return false;
    }
    $GLOBALS['obj']['memcache'] = $mc;
    return true;
}
开发者ID:hcopr,项目名称:Hubbub,代码行数:22,代码来源:genlib.php


示例9: prep

 /**
 		Initialize cache backend
 			@return bool
 			@public
 	**/
 static function prep()
 {
     if (!self::$vars['CACHE']) {
         return TRUE;
     }
     if (is_bool(self::$vars['CACHE'])) {
         // Auto-detect backend
         self::detect();
     }
     if (preg_match('/^(apc)|(memcache)=(.+)|(xcache)|(folder)=(.+\\/)/i', self::$vars['CACHE'], $match)) {
         if (isset($match[5]) && $match[5]) {
             if (!is_dir($match[6])) {
                 self::mkdir($match[6]);
             }
             // File system
             self::$backend = array('type' => 'folder', 'id' => $match[6]);
         } else {
             $ext = strtolower($match[1] ?: ($match[2] ?: $match[4]));
             if (!extension_loaded($ext)) {
                 trigger_error(sprintf(self::TEXT_PHPExt, $ext));
                 return FALSE;
             }
             if (isset($match[2]) && $match[2]) {
                 // Open persistent MemCache connection(s)
                 $mcache = NULL;
                 foreach (self::split($match[3]) as $server) {
                     // Hostname:port
                     list($host, $port) = explode(':', $server);
                     if (is_null($port)) {
                         // Use default port
                         $port = 11211;
                     }
                     // Connect to each server
                     if (is_null($mcache)) {
                         $mcache = memcache_pconnect($host, $port);
                     } else {
                         memcache_add_server($mcache, $host, $port);
                     }
                 }
                 // MemCache
                 self::$backend = array('type' => $ext, 'id' => $mcache);
             } else {
                 // APC and XCache
                 self::$backend = array('type' => $ext);
             }
         }
         self::$buffer = NULL;
         return TRUE;
     }
     // Unknown back-end
     trigger_error(self::TEXT_Backend);
     return FALSE;
 }
开发者ID:nian2go,项目名称:fatfree,代码行数:58,代码来源:base.php


示例10: var2

if ($a = $allan2->get('test2')) {
    print "Got value : " . $a . "<br>";
    var2($flags);
}
$flags = false;
if ($a = $allan3->get('test3')) {
    print "Got value : " . $a . "<br>";
    var2($flags);
}
$flags = false;
if ($a = $allan4->get('test4')) {
    print "Got value : " . $a . "<br>";
    var2($flags);
}
print "..<br>";
$memcache_obj = memcache_pconnect('127.0.0.1', 11211);
memcache_set($memcache_obj, 'test5', 'sdf2', false, 10);
memcache_set($memcache_obj, 'test6', true, false, 10);
memcache_set($memcache_obj, 'test7', false, false, 10);
$temp2 = array();
$temp = array($temp2);
memcache_set($memcache_obj, 'test8', $temp, false, 10);
#memcache_set($memcache_obj, 'test8', NULL, false, 10);
$flags = false;
if ($a = memcache_get($memcache_obj, 'test5', $flags)) {
    print "5:Got value : " . $a . "<br>";
    if ($flags) {
        print "Got flags";
    } else {
        print "No flags";
    }
开发者ID:staticweb,项目名称:webfilter,代码行数:31,代码来源:index.php


示例11: connect

 /**
  * Lazy initialiser for memcache connection. Uses pconnect for to take
  * advantage of the persistence pool where possible.
  */
 private function connect()
 {
     if ($this->connection) {
         return;
     }
     if (class_exists("Memcached")) {
         $this->mc = new \Memcached();
         $this->mc->addServer($this->host, $this->port);
         $this->connection = true;
     } else {
         $this->connection = memcache_pconnect($this->host, $this->port);
     }
     if (!$this->connection) {
         $error = "Couldn't connect to memcache server";
         $this->log('error', $error);
         throw new CacheException($error);
     }
 }
开发者ID:Devids,项目名称:google-api-php-client,代码行数:22,代码来源:Memcache.php


示例12: prep

 /**
 		Initialize framework level-2 cache
 			@return boolean
 			@private
 	**/
 private static function prep()
 {
     if (!isset(F3::$global['CACHE'])) {
         // Extensions usable as cache back-ends
         $_exts = array_intersect(explode('|', 'apc|xcache'), get_loaded_extensions());
         foreach (array_keys($_exts, '') as $_null) {
             unset($_exts[$_null]);
         }
         $_exts = array_merge($_exts, array());
         F3::$global['CACHE'] = $_exts[0] ?: 'folder=' . F3::$global['BASE'] . 'cache/';
     }
     if (preg_match('/^(?:(folder)\\=(.+\\/)|(apc)|(memcache)=(.+))|(xcache)/i', F3::$global['CACHE'], $_match)) {
         if ($_match[1]) {
             if (!file_exists($_match[2])) {
                 if (!is_writable(dirname($_match[2])) && function_exists('posix_getpwuid')) {
                     $_uid = posix_getpwuid(posix_geteuid());
                     F3::$global['CONTEXT'] = array($_uid['name'], realpath(dirname($_match[2])));
                     trigger_error(F3::TEXT_Write);
                     return;
                 }
                 // Create the framework's cache folder
                 mkdir($_match[2], 0755);
             }
             // File system
             self::$l1cache = array('type' => 'folder', 'id' => $_match[2]);
         } else {
             $_ext = strtolower($_match[3] ?: ($_match[4] ?: $_match[6]));
             if (!extension_loaded($_ext)) {
                 F3::$global['CONTEXT'] = $_ext;
                 trigger_error(F3::TEXT_PHPExt);
                 return;
             }
             if ($_match[4]) {
                 // Open persistent MemCache connection(s)
                 // Multiple servers separated by semi-colon
                 $_pool = explode(';', $_match[5]);
                 $_mcache = NULL;
                 foreach ($_pool as $_server) {
                     // Hostname:port
                     list($_host, $_port) = explode(':', $_server);
                     if (is_null($_port)) {
                         // Use default port
                         $_port = 11211;
                     }
                     // Connect to each server
                     if (is_null($_mcache)) {
                         $_mcache = memcache_pconnect($_host, $_port);
                     } else {
                         memcache_add_server($_mcache, $_host, $_port);
                     }
                 }
                 // MemCache
                 self::$l1cache = array('type' => $_ext, 'id' => $_mcache);
             } else {
                 // APC and XCache
                 self::$l1cache = array('type' => $_ext);
             }
         }
         self::$l1cache['current'] = FALSE;
         return TRUE;
     }
     // Unknown back-end
     trigger_error(self::TEXT_Backend);
     return FALSE;
 }
开发者ID:seyyah,项目名称:f3kulmysql,代码行数:70,代码来源:F3.php


示例13: connect

 /**
  * Lazy initialiser for memcache connection. Uses pconnect for to take
  * advantage of the persistence pool where possible.
  */
 private function connect()
 {
     if ($this->connection) {
         return;
     }
     if (class_exists("Memcached")) {
         $this->mc = new Memcached();
         $this->mc->addServer($this->host, $this->port);
         $this->connection = true;
     } else {
         $this->connection = memcache_pconnect($this->host, $this->port);
     }
     if (!$this->connection) {
         $error = "Couldn't connect to memcache server";
         $this->client->getLogger()->error($error);
         throw new Postman_Google_Cache_Exception($error);
     }
 }
开发者ID:DanMaiman,项目名称:Awfulkid,代码行数:22,代码来源:Memcache.php


示例14: connect

 private function connect()
 {
     if (!($this->connection = @memcache_pconnect($this->host, $this->port))) {
         throw new Google_CacheException("Couldn't connect to memcache server");
     }
 }
开发者ID:JamesLinus,项目名称:platform,代码行数:6,代码来源:Google_MemcacheCache.php


示例15: error_reporting

<?php 
error_reporting(E_ALL);
# Limit script runtime to 5 minutes
set_time_limit(300);
require_once "./config.default.php";
# If there are any overrides include them now
if (!is_readable('./config.php')) {
    echo "<H2>WARNING: Configuration file config.php does not exist. Please\n         notify your system administrator.</H2>";
} else {
    include_once './config.php';
}
######################################################
# Connect to memcache
######################################################
$memcache = memcache_pconnect($memcache_server, $memcache_port);
if ($memcache) {
    if (!isset($_GET['datetime'])) {
        $datetime = date('YmdH');
        $unixtime = time() - 7200;
    } else {
        $datetime = $_GET['datetime'];
        $unixtime = strtotime($datetime . "00");
    }
    $formatted_date = date('m/d/Y H', $unixtime);
    $time_prev = $unixtime - 3600;
    $prev_timeperiod = date('YmdH', $time_prev);
    $time_after = $unixtime + 3600;
    $next_timeperiod = date('YmdH', $time_after);
    ?>
Shows only GET requests with more than <?php 
开发者ID:vvuksan,项目名称:pagetime-analyzer,代码行数:30,代码来源:index.php


示例16: connect_mcache

 function connect_mcache($level = 3)
 {
     global $modSettings, $mcache, $db_persist;
     $servers = explode(',', $modSettings['cache_memcached']);
     $server = explode(':', trim($servers[array_rand($servers)]));
     // Don't try more times than we have servers!
     $level = min(count($servers), $level);
     if (empty($db_persist)) {
         $mcache = memcache_connect($server[0], empty($server[1]) ? 11211 : $server[1]);
     } else {
         $mcache = memcache_pconnect($server[0], empty($server[1]) ? 11211 : $server[1]);
     }
     if (!$mcache && $level > 0) {
         connect_mcache($level - 1);
     }
 }
开发者ID:thunderamur,项目名称:PortaMx-Virgo-2.0-Beta-2,代码行数:16,代码来源:SubsCache.php


示例17: connect

 /**
  * Lazy initialiser for memcache connection. Uses pconnect for to take
  * advantage of the persistence pool where possible.
  */
 private function connect()
 {
     if ($this->connection) {
         return;
     }
     if (class_exists("Memcached")) {
         $this->mc = new Memcached();
         $this->mc->addServer($this->host, $this->port);
         $this->connection = true;
     } else {
         $this->connection = memcache_pconnect($this->host, $this->port);
     }
     if (!$this->connection) {
         $error = "Couldn't connect to memcache server";
         $this->client->getLogger()->error($error);
         //throw new Google_Cache_Exception($error);
         echo json_encode(array('status' => FALSE, 'response-code' => 400, 'response' => $error, 'message' => ''));
         die;
     }
 }
开发者ID:lo-lk-org,项目名称:LO_LK_V1,代码行数:24,代码来源:Memcache.php


示例18: _conn

 /**
  * @return resource
  */
 function _conn($ns)
 {
     $id = $this->_keyNs[$ns]['daemon'];
     if (!isset($this->_conns[$id])) {
         $host = $this->_daemons[$id]['host'];
         $port = lor($this->_daemons[$id]['port'], 11211);
         $this->_conns[$id] = memcache_pconnect($host, $port);
         if (!$this->_conns[$id]) {
             $this->_conns[$id] = memcache_connect($host, $port);
         }
     }
     return $this->_conns[$id];
 }
开发者ID:evilgeny,项目名称:bob,代码行数:16,代码来源:Facade.class.php


示例19: prep

 /**
 		Initialize framework level-2 cache
 			@return boolean
 			@public
 	**/
 public static function prep()
 {
     if (preg_match('/^(apc)|(memcache)=(.+)|(xcache)|(folder)\\=(.+\\/)/i', F3::$global['CACHE'], $_match)) {
         if ($_match[5]) {
             if (!file_exists($_match[6])) {
                 if (!is_writable(dirname($_match[6])) && function_exists('posix_getpwuid')) {
                     $_uid = posix_getpwuid(posix_geteuid());
                     F3::$global['CONTEXT'] = array($_uid['name'], realpath(dirname($_match[6])));
                     trigger_error(F3::TEXT_Write);
                     return;
                 }
                 // Create the framework's cache folder
                 mkdir($_match[6], 0755);
             }
             // File system
             self::$backend = array('type' => 'folder', 'id' => $_match[6]);
         } else {
             $_ext = strtolower($_match[1] ?: ($_match[2] ?: $_match[4]));
             if (!extension_loaded($_ext)) {
                 F3::$global['CONTEXT'] = $_ext;
                 trigger_error(F3::TEXT_PHPExt);
                 return;
             }
             if ($_match[2]) {
                 // Open persistent MemCache connection(s)
                 // Multiple servers separated by semi-colon
                 $_pool = explode(';', $_match[3]);
                 $_mcache = NULL;
                 foreach ($_pool as $_server) {
                     // Hostname:port
                     list($_host, $_port) = explode(':', $_server);
                     if (is_null($_port)) {
                         // Use default port
                         $_port = 11211;
                     }
                     // Connect to each server
                     if (is_null($_mcache)) {
                         $_mcache = memcache_pconnect($_host, $_port);
                     } else {
                         memcache_add_server($_mcache, $_host, $_port);
                     }
                 }
                 // MemCache
                 self::$backend = array('type' => $_ext, 'id' => $_mcache);
             } else {
                 // APC and XCache
                 self::$backend = array('type' => $_ext);
             }
         }
         self::$l1cache = NULL;
         return TRUE;
     }
     // Unknown back-end
     trigger_error(self::TEXT_Backend);
     return FALSE;
 }
开发者ID:seyyah,项目名称:f3kayOLD,代码行数:61,代码来源:F3.php


示例20: connect

 private function connect() {
   if (! $this->connection = @memcache_pconnect($this->host, $this->port)) {
     throw new osapiStorageException("Couldn't connect to memcache server");
   }
 }
开发者ID:networksoft,项目名称:seekerplus2.com,代码行数:5,代码来源:osapiMemcacheStorage.php



注:本文中的memcache_pconnect函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP memorize_param函数代码示例发布时间:2022-05-15
下一篇:
PHP memcache_mysql_fetch_assoc函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap