We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
How can i set particular cache for particular time. ?
I have tried using this : $this->redis->set('foo2', 'bar',500); but its not working. please some one look in to this.
Thanks, Hardik Devariya
The text was updated successfully, but these errors were encountered:
You'll want to check the Redis commands list on redis.io to see what's wrong, here.
The short answer is that set doesn't support including an expiration. You'll need to use setex instead.
set
setex
Sorry, something went wrong.
Hello i have checked it using https://redis.io/commands/setex and it works fine on the redis cli.
but how can i use using php codeigniter code i have tried this : $this->redis->setex('foo2', 'bar',500);
but it still not work from ci.
If you look again at the command docs, you'll see that order matters, here.
No branches or pull requests
Hello,
How can i set particular cache for particular time. ?
I have tried using this : $this->redis->set('foo2', 'bar',500); but its not working. please some one look in to this.
Thanks,
Hardik Devariya
The text was updated successfully, but these errors were encountered: