。
質問Redis を練習しているときに、
hSet、
hGet などの高度なメソッドを使用したい場合は、最初にハンドルを返す必要があります。その後、ハンドルを実行できます。 <pre class="brush:php;toolbar:false"><?php
namespace app\index\controller;
use think\cache\driver\Redis;
use think\Controller;
class RedisTest extends Controller
{
public function index()
{
$redis = new Redis();
$redis = $redis->handler();
dump($redis->hSet('h_name', '1', 'tom'));// int(1)
}
}</pre>
の下にあるように、実行は成功しました。問題は、なぜ最初にハンドルを返さなければならないのかということですが、これは魔法のメソッド __call
を使用して解決できます。
ソース コードの追跡疑問があるので、それを解消する必要があります。ソース コードを追跡すると、
が表示され、実際には
__call がなく、返されるのは handler
だけであることがわかりました。高度なメソッドを実行するためのハンドル。なぜ __clss
が使用されないのかわかりません。 問題の解決
解決策は、
に
__call メソッドを追加することです。 Redis だけが高レベルのメソッドを直接使用できるわけではなく、このファイルを継承する他の Cache クラスもそれを直接使用できます。コードは次のとおりです<pre class="brush:php;toolbar:false"> /**
* 执行高级方法
* @param $method
* @param $parameters
* @return mixed
*/
public function __call($method, $parameters)
{
return call_user_func_array(array($this->handler(), $method), $parameters);
}</pre>
テストコードを見てください<pre class="brush:php;toolbar:false"><?php
namespace app\index\controller;
use think\cache\driver\Redis;
use think\Controller;
class RedisTest extends Controller
{
public function index()
{
$redis = new Redis();
// $redis = $redis->handler();
dump($redis->hSet('h_name', '2', 'jerry'));// int(1)
}
}</pre>
この問題は解決されました。修正が終わった後、Laravel では
を使っていたらしいことを思い出し、ソースコードを見てみると、確かにその通りでした。
ravel/vendor/laravel/framework/src/Illuminate/Redis/RedisManager.php<pre class="brush:php;toolbar:false"> /**
* Pass methods onto the default Redis connection.
*
* @param string $method
* @param array $parameters
* @return mixed
*/
public function __call($method, $parameters)
{
return $this->connection()->{$method}(...$parameters);
}</pre>
結論には次のコードがあります。実際、この小さな変更は実際的な意味以上に重要です。結局のところ、これはバグではなく、