承接 ublaboo/predis-client-nette-extension 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

ublaboo/predis-client-nette-extension

最新稳定版本:v2.0.0

Composer 安装命令:

composer require ublaboo/predis-client-nette-extension

包简介

A Nette extension for the AWS SDK for PHP http://aws.amazon.com/sdkforphp/

README 文档

README

Latest Stable Version License Total Downloads Gitter

ublaboo/predis-client-nette-extension

Nette DIC extension for predis/predis client

Installation

Download extension using composer

composer require ublaboo/predis-client-nette-extension

Register extension in your config.neon file:

extensions:
    predisClient: Ublaboo\PredisClientNetteExtension\DI\PredisClientNetteExtension

Configuration

Configure extension in your config.neon file:

predisClient:
    uri: 'tcp://127.0.0.1:32768'
    options:
        prefix: 'fooPrefix:'
        # other options
    sessions: true # Whether to register redis session handler or not
    sessionsTtl: null # Seconds or null (null = ini_get('session.gc_maxlifetime'))

Usage

<?php

declare(strict_types=1);

use Predis\Client;

class Foo
{

	/**
	 * @var Client
	 */
	public $redisClient;


	public function __construct(Client $redisClient)
	{
		$this->redisClient = $redisClient;
	}


	public function save(string $key, string $value): void
	{
		$this->redisClient->set($key, $value);
	}
	
	
	public function retrive(string $key): ?string
	{
		return $this->redisClient->get($key);
	}

}

统计信息

  • 总下载量: 35.49k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 2
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-07-03