currently i added this line to Mojolicious::Lite app to disable caching
app->renderer->cache->max_keys(0);
but sometimes webpage showing updated content and sometimes showing cached template
i do not know exactly what the problem is, there is no problem with morbo, this is happening only with hypnotoad. i want to try disabling the cache.
edit: i solved my problem. problem is not with the mojolicious caching, it is with the database caching. if you experience similar problem, try setting 'AutoCommit' to 1 in your DBI->connect() method.