You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to redi...@googlegroups.com
Is there any option in redis to listen specific key like "user:*" ? i want to listen only expire event for specific key, not for other keys like "KEY1, KEY2" are expires. i tried with regex but it's not working for me..
Jan-Erik Rediger
unread,
Aug 7, 2014, 2:42:38 AM8/7/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to redi...@googlegroups.com, jan...@fnordig.de
rClient1.psubscribe('__keyevent@0__:expired');
rClient1.on("pmessage", function (channel, message) {
c(message); // prints __keyevent@0__:expired
c(channel); //prints __keyevent@0__:expired
}
,
so problem is i am unable to get key name which are going to expire. i want key name when it's expires. for example if user:123 is going expire then i am able to get user:123. so i can handle other my server event on it.
Hitesh Dobariya
unread,
Aug 9, 2014, 3:15:39 AM8/9/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to redi...@googlegroups.com, jan...@fnordig.de
Thanks for your suggestion now i am able to get the notification.