I have following PHP array and I want to store it in Redis. Also I want to retrieve all the array items whenever needed to perform the operation. How can I achieve this. Please help.
Following is my PHP/redis code:
$data['xxx'] = array(
'created' => date("Y-m-d H:i:s"),
'tracking_id' => 'abCd',
'affiliate_id' => 100,
);