Thanks. And.... I really like what I'm seeing in h2o. I appreciate
On Sep 2, 11:21 am, Taylor Luk <
subject...@gmail.com> wrote:
> Hello Greg,
>
> Template Cache is turned on by default, It caches the object representation
> of the template into a file. It defaults to what every your tmp path of your
> operating system has. (/tmp, /var/tmp, c:\users and settings\username\temp).
>
> if you want to set the cache path, here is the config option to do it.
>
> new h2o('index.html', array(
> 'cache' => 'file', // options: 'file', 'apc', false (default "file")
> 'cache_dir' => dirname(__FILE__)
> ));
>
> Cheers
>