BAE内存缓存(phpRedis)
redis = new Redis();
$this->redis->connect($host, $port, '0.2');//timeout 200ms
$this->redis->auth("{$username}-{$password}-{$database}");
}
catch (RedisException $error)
{
return false;
//var_dump($error);
}
}
public function get($key)
{
return $this->redis->get($key);
}
public function set($key, $value, $express=0)
{
if ($express)
return $this->redis->setex($key, $express, $value);
else
return $this->redis->set($key, $value);
}
public function delete($key)
{
return $this->redis->delete($key);
}
}
95Shop可以免费下载使用,是一款仿醉品商城网店系统,内置SEO优化,具有模块丰富、管理简洁直观,操作易用等特点,系统功能完整,运行速度较快,采用ASP.NET(C#)技术开发,配合SQL Serve2000数据库存储数据,运行环境为微软ASP.NET 2.0。95Shop官方网站定期开发新功能和维护升级。可以放心使用! 安装运行方法 1、下载软件压缩包; 2、将下载的软件压缩包解压缩,得到we









