class IndexController extends \Phalcon\Mvc\Controller { public function indexAction() { echo "<h1>Hello</h1>"; } } How to change output but needn't restart iis.
Phalcon does not cache PHP files, maybe this related to a bytecode cache like APC, XCache, eAccelerator, etc, check which one of these you are using
thanks.