当前位置: 首页>>代码示例>>PHP>>正文


PHP Store::storePath方法代码示例

本文整理汇总了PHP中Store::storePath方法的典型用法代码示例。如果您正苦于以下问题:PHP Store::storePath方法的具体用法?PHP Store::storePath怎么用?PHP Store::storePath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Store的用法示例。


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

示例1: array

<?php

namespace Config;

/**
 * 存储配置
 * 注意生产环境使用$driver = self::DRIVER_MC,具体参考applications/Demo/README.md
 * @author walkor
 */
class Store
{
    // 使用文件存储,注意使用文件存储无法支持workerman分布式部署
    const DRIVER_FILE = 1;
    // 使用memcache存储,支持workerman分布式部署
    const DRIVER_MC = 2;
    /* 使用哪种存储驱动 文件存储DRIVER_FILE 或者 memcache存储DRIVER_MC,为了更好的性能请使用DRIVER_MC
     * 注意: DRIVER_FILE只适合开发环境,生产环境或者压测请使用DRIVER_MC,需要php cli 安装memcache扩展
     */
    public static $driver = self::DRIVER_FILE;
    // 如果是memcache存储,则在这里设置memcache的ip端口,注意确保你安装了memcache扩展
    public static $gateway = array('127.0.0.1:11211');
    /* 
     * 如果使用文件存储,默认系统临时目录下
     */
    public static $storePath = '';
}
// 默认系统临时目录下
Store::$storePath = sys_get_temp_dir() . '/workerman-sender/';
开发者ID:bajian,项目名称:js-web-skills,代码行数:28,代码来源:Store.php

示例2: array

 * 如果有多个GatewayWorker应用时,每个应用的这个配置都应该不同,
 * 否则会导致多个应用间数据互通
 * 如果有多个GatewayWorker应用时,配置细节如下
 *     当Store::$driver=self::DRIVER_FILE时,每个应用的Store::$storePath应该不同
 *     当Store::$driver=self::DRIVER_MC/DRIVER_REDIS时,每个应用的
 *     Store::$gateway的ip或者端口应该不同
 *     
 * 注意:当使用Redis存储时,Redis服务端redis-server的timeout配置成0
 *           redis扩展git地址https://github.com/phpredis/phpredis
 *           redis扩展安装方法 pecl install redis
 *           
 * @author walkor
 */
class Store
{
    // 使用文件存储,注意使用文件存储无法支持workerman分布式部署
    const DRIVER_FILE = 1;
    // 使用memcache存储,支持workerman分布式部署
    const DRIVER_MC = 2;
    // 使用redis存储(推荐),支持workerman分布式部署
    const DRIVER_REDIS = 3;
    // DRIVER_FILE 或者 DRIVER_MC 或者 DRIVER_REDIS(推荐)
    public static $driver = self::DRIVER_REDIS;
    //$driver为DRIVER_MC/DRIVER_REDIS时需要配置memcached/redis服务端ip和端口
    public static $gateway = array('127.0.0.1:6379');
    // $driver为DRIVER_FILE时要配置此项,实际配置在下面几行
    public static $storePath = '';
}
// 实际在这里配置的Store::$storePath ,默认为临时目录
Store::$storePath = sys_get_temp_dir() . '/workerman-your-app/';
开发者ID:xuanchristy,项目名称:hc_web_connection,代码行数:30,代码来源:Store.php

示例3: array

 * 如果有多个GatewayWorker应用时,配置细节如下
 *     当Store::$driver=self::DRIVER_FILE时,每个应用的Store::$storePath应该不同
 *     当Store::$driver=self::DRIVER_MC/DRIVER_REDIS时,每个应用的
 *     Store::$gateway的ip或者端口应该不同
 *     
 * 注意:当使用Redis存储时,Redis服务端redis-server的timeout配置成0
 *           redis扩展git地址https://github.com/phpredis/phpredis
 *           redis扩展安装方法 pecl install redis
 *           
 * @author walkor
 */
class Store
{
    // 使用文件存储,注意使用文件存储无法支持workerman分布式部署
    const DRIVER_FILE = 1;
    // 使用memcache存储,支持workerman分布式部署
    const DRIVER_MC = 2;
    // 使用redis存储(推荐),支持workerman分布式部署
    const DRIVER_REDIS = 3;
    // DRIVER_FILE 或者 DRIVER_MC 或者 DRIVER_REDIS(推荐)
    public static $driver = self::DRIVER_FILE;
    // 框架自身配置,$driver为DRIVER_MC/DRIVER_REDIS时需要配置memcached/redis服务端ip和端口
    public static $gateway = array('127.0.0.1:6379');
    // 存储房间相关数据,$driver为DRIVER_MC/DRIVER_REDIS时需要配置memcached/redis服务端ip和端口
    public static $room = array('127.0.0.1:6379');
    // $driver为DRIVER_FILE时要配置此项,实际配置在最下面一行
    public static $storePath = '';
}
// 默认系统临时目录下
Store::$storePath = sys_get_temp_dir() . '/workerman-chat/';
开发者ID:u0mo5,项目名称:workerman-chat-for-win,代码行数:30,代码来源:Store.php

示例4: array

 * 如果有多个GatewayWorker应用时,每个应用的这个配置都应该不同,
 * 否则会导致多个应用间数据互通
 * 如果有多个GatewayWorker应用时,配置细节如下
 *     当Store::$driver=self::DRIVER_FILE时,每个应用的Store::$storePath应该不同
 *     当Store::$driver=self::DRIVER_MC/DRIVER_REDIS时,每个应用的
 *     Store::$gateway的ip或者端口应该不同
 *     
 * 注意:当使用Redis存储时,Redis服务端redis-server的timeout配置成0
 *           redis扩展git地址https://github.com/phpredis/phpredis
 *           redis扩展安装方法 pecl install redis
 *           
 * @author walkor
 */
class Store
{
    // 使用文件存储,注意使用文件存储无法支持workerman分布式部署
    const DRIVER_FILE = 1;
    // 使用memcache存储,支持workerman分布式部署
    const DRIVER_MC = 2;
    // 使用redis存储(推荐),支持workerman分布式部署
    const DRIVER_REDIS = 3;
    // DRIVER_FILE 或者 DRIVER_MC 或者 DRIVER_REDIS(推荐)
    public static $driver = self::DRIVER_FILE;
    //$driver为DRIVER_MC/DRIVER_REDIS时需要配置memcached/redis服务端ip和端口
    public static $gateway = array('127.0.0.1:6379');
    // $driver为DRIVER_FILE时要配置此项,实际配置在最下面一行
    public static $storePath = '';
}
// 默认系统临时目录下
Store::$storePath = sys_get_temp_dir() . '/workerman-todpole/';
开发者ID:ncusoho,项目名称:workerman-todpole,代码行数:30,代码来源:Store.php

示例5: array

 * 如果有多个GatewayWorker应用时,每个应用的这个配置都应该不同,
 * 否则会导致多个应用间数据互通
 * 如果有多个GatewayWorker应用时,配置细节如下
 *     当Store::$driver=self::DRIVER_FILE时,每个应用的Store::$storePath应该不同
 *     当Store::$driver=self::DRIVER_MC/DRIVER_REDIS时,每个应用的
 *     Store::$gateway的ip或者端口应该不同
 *
 * 注意:当使用Redis存储时,Redis服务端redis-server的timeout配置成0
 *           redis扩展git地址https://github.com/phpredis/phpredis
 *           redis扩展安装方法 pecl install redis
 *
 * @author walkor
 */
class Store
{
    // 使用文件存储,注意使用文件存储无法支持workerman分布式部署
    const DRIVER_FILE = 1;
    // 使用memcache存储,支持workerman分布式部署
    const DRIVER_MC = 2;
    // 使用redis存储(推荐),支持workerman分布式部署
    const DRIVER_REDIS = 3;
    // DRIVER_FILE 或者 DRIVER_MC 或者 DRIVER_REDIS(推荐)
    public static $driver = self::DRIVER_MC;
    //$driver为DRIVER_MC/DRIVER_REDIS时需要配置memcached/redis服务端ip和端口
    public static $gateway = array('127.0.0.1:11212');
    // $driver为DRIVER_FILE时要配置此项,实际配置在最下面一行
    public static $storePath = '';
}
// 默认系统临时目录下
Store::$storePath = sys_get_temp_dir() . '/thinksns-msgd/';
开发者ID:medz,项目名称:thinksns-4,代码行数:30,代码来源:Store.php

示例6: array

<?php

namespace Config;

/**
 * 存储配置
 * 注意生产环境使用$driver = self::DRIVER_MC,具体参考applications/Demo/README.md
 * @author walkor
 */
class Store
{
    // 使用文件存储,注意使用文件存储无法支持workerman分布式部署
    const DRIVER_FILE = 1;
    // 使用memcache存储,支持workerman分布式部署
    const DRIVER_MC = 2;
    /* 使用哪种存储驱动 文件存储DRIVER_FILE 或者 memcache存储DRIVER_MC,为了更好的性能请使用DRIVER_MC
     * 注意: DRIVER_FILE只适合开发环境,生产环境或者压测请使用DRIVER_MC,需要php cli 安装memcache扩展
     */
    public static $driver = self::DRIVER_FILE;
    // 如果是memcache存储,则在这里设置memcache的ip端口,注意确保你安装了memcache扩展
    public static $gateway = array();
    /*
     * 如果使用文件存储,默认系统临时目录下
     */
    public static $storePath = '';
}
// 默认系统临时目录下
Store::$storePath = sys_get_temp_dir() . '/workerman-pushService/';
开发者ID:seathiefwang,项目名称:SmartServer,代码行数:28,代码来源:Store.php


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