我可以像这样连接到我的弹性集群:
$ awsElasticache = new ElastiCacheClient(CredentialProvider :: atsDefaultConfigConstructor(false,false));$ clusterResult = $ awsElasticache-> …
要在Memcached中设置键/值对,请始终从当前时间延长到期时间。
试试这个
$this->mem = new Memcached(); $this->mem->addServer($this->endPoint,11211); $expires = Carbon::now()->addMinutes(10); $this->mem->set('myKey','myValue', $expires); $result = $this->mem->get('myKey'); echo $result;
NOTE: 出于某种原因,Memcached最适合 Carbon 时间
NOTE:
Carbon
看到 https://artisansweb.net/work-php-datetime-using-carbon/ 关于如何设置和使用 Carbon 在你当前的项目上