xeoncross / PHP-Template

Simple PHP template inheritance and view management class using pure PHP
28 stars 4 forks source link

Cache template to html file #6

Closed kamov closed 7 years ago

kamov commented 8 years ago

hi, is possible and where I can save to cache full html template? Thanks

xeoncross commented 8 years ago

This process is so ridiculously fast there isn't much point caching templates unless you simply want to cache an expensive process inside the template.

Either way, you are free to cache the string output from Template and put inside a database, memcached, redis, or just plan files.

kamov commented 7 years ago

Thanks, I was able to make this.