Skip to content
New issue

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

How can i set time for expire. #64

Open
hardik-tatvasoft opened this issue Sep 18, 2017 · 3 comments
Open

How can i set time for expire. #64

hardik-tatvasoft opened this issue Sep 18, 2017 · 3 comments

Comments

@hardik-tatvasoft
Copy link

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

@danhunsaker
Copy link
Contributor

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.

@hardik-tatvasoft
Copy link
Author

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.

@danhunsaker
Copy link
Contributor

If you look again at the command docs, you'll see that order matters, here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants