Hi,
profiling results show that DefaultFaceletFactory.needsToBeRefreshed()
costs some CPU time - FACELETS_REFRESH_PERIOD=-1 solves it, but
shouldn't be -1 default value if stage.equals(production)? Something
like:
if (refreshParam == null && stage == production)
refreshPeriod = -1
else
refreshPeriod = refreshParam
Are there other params that can differ in development and production
environment?
Thanks,
Martin Kočí