イントロダクションIntroduction
Redisはオープンソースの進歩的なキー・値保存システムです。キーに文字列、ハッシュ、リスト、セット、ソート済みセットが使用できるため、データ構造サーバーとしてしばしば取り上げられます。Redis[http://redis.io] is an open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings[http://redis.io/topics/data-types#strings], hashes[http://redis.io/topics/data-types#hashes], lists[http://redis.io/topics/data-types#lists], sets[http://redis.io/topics/data-types#sets], and sorted sets[http://redis.io/topics/data-types#sorted-sets].
**注意:**PECLでRedis PHP拡張をインストールしている場合、
app/config/app.php
ファイルのRedisエイリアスをリネームする必要があります。Note: If you have the Redis PHP extension installed via PECL, you will need to rename the alias for Redis in yourapp/config/app.php
file.
設定Configuration
アプリケーションのRedis設定はapp/config/database.phpファイルにあります。このファイルの中にredis配列があり、アプリケーションで使用されるRadisサーバーの設定を含んでいます。The Redis configuration for your application is stored in the app/config/database.php file. Within this file, you will see a redis array containing the Redis servers used by your application:
'redis' => array(
'cluster' => true,
'default' => array('host' => '127.0.0.1', 'port' => 6379),
),
デフォルトサーバー設定は、開発時には十分でしょう。ですが、ご自由に自分の環境に合わせてこの配列を変更してください。ただ各Redisサーバーに名前を与え、使用するホストとポートを指定するだけです。The default server configuration should suffice for development. However, you are free to modify this array based on your environment. Simply give each Redis server a name, and specify the host and port used by the server.
cluster
オプションはLaravel
Redisクライアントに対し、Redisノード間でクライアントサイドで共有することを伝えます。これによりノードをプールしたり、利用できるRAMの大きさのキャッシュが利用できます。しかし注意すべきなのは、クライアントサイドの共有ではフェイルオーバーが処理されないことです。ですから主な使い方はキャッシュデーターを他のプライマリーのデーター域から使用できるようにすることでしょう。The cluster
option
will tell the Laravel Redis client to perform
client-side sharding across your Redis nodes,
allowing you to pool nodes and create a large amount
of available RAM. However, note that client-side
sharding does not handle failover; therefore, is
primarily suited for cached data that is available
from another primary data store.
Redisサーバーが認証を求めている場合、Redisサーバー設定にpassword
キー/値のペアを指定してください。If your Redis server requires
authentication, you may supply a password by adding
a password
key / value pair to your
Redis server configuration array.
使用法Usage
Redis::connection
メソッドを呼び出すだけで、Redisインスタンスが取得されます。You may get a Redis instance by
calling the Redis::connection
method:
$redis = Redis::connection();
これによりデフォルトのRedisサーバーのインスタンスが取得できます。もしサーバーをクラスタ化していない場合、Redis設定で定義されている特定のサーバーを取得するには、connection
メソッドにサーバー名を渡す必要があります。This will give you an instance of
the default Redis server. If you are not using
server clustering, you may pass the server name to
the connection
method to get a specific
server as defined in your Redis
configuration:
$redis = Redis::connection('other');
一度Redisクライアントのインスタンスを取得すれば、どんなRedisコマンドでも、発行できます。LaravelではコマンドをRedisサーバーに渡すため、マジックメソッドが使用できます。Once you have an instance of the Redis client, we may issue any of the Redis commands[http://redis.io/commands] to the instance. Laravel uses magic methods to pass the commands to the Redis server:
$redis->set('name', 'Taylor');
$name = $redis->get('name');
$values = $redis->lrange('names', 5, 10);
コマンドへの引数はシンプルにマジックメソッドに渡されていることに注目してください。もちろんマジックメソッドを使用したくなければ、サーバーにコマンドを送信するためcommand
メソッドを使用できます。Notice the arguments to the
command are simply passed into the magic method. Of
course, you are not required to use the magic
methods, you may also pass commands to the server
using the command
method:
$values = $redis->command('lrange', array(5, 10));
コマンドをデフォルト接続に対し実行吸う場合は、静的なマジックメソッドをRedis
クラスに対し使用してください。When you are simply executing
commands against the default connection, just use
static magic methods on the Redis
class:
Redis::set('name', 'Taylor');
$name = Redis::get('name');
$values = Redis::lrange('names', 5, 10);
注目: RadisのキャッシュとセッションドライバーはLaravelに含まれています。Note: Redis cache[/docs/4.2/cache] and session[/docs/4.2/session] drivers are included with Laravel.
パイプラインPipelining
パイプラインは多くのコマンドを一度にサーバーへ送る必要がある時に使用すべきです。使用を開始するにはpipeline
コマンドを使ってください。Pipelining should be used when
you need to send many commands to the server in one
operation. To get started, use the
pipeline
command:
多くのコマンドをサーバーに送るPiping Many Commands To Your Servers
Redis::pipeline(function($pipe)
{
for ($i = 0; $i < 1000; $i )
{
$pipe->set("key:$i", $i);
}
});