Level 5
Can really no one try it?
Hi there, I am trying to implement memcached cache-tags in Lumen. I add an item with two tags but it is callable only from the first tag. Am I doing something wrong here?
>>> Cache::tags('people', 'artists')->put('Anne', 'Anne Wilkins', 5);
=> null
>>> Cache::tags('people')->get('Anne');
=> "Anne Wilkins"
>>> Cache::tags('artists')->get('Anne');
=> null
Please or to participate in this conversation.