redis issue
Installation and Configuration
Why do you need redis if you have litespeed? both are caches, seems like one or the other would do.
$the_array = array('cat', 'dog', 'ant eater');
{foreach $_the_array as $animal}
The animal is a {$animal}
{/foreach}
$the_array = array('tom' => 'cat', 'bill' => 'dog', 'simon' => 'ant eater');
{foreach $_the_array as $owner => $pet}
The pet of {$owner} is a {$pet}
{/foreach}
the pet of Simon is a {$the_array['simon']}the pet of Simon is a {$the_array.simon}