A documentação sobre ehache diz:
timeToIdleSeconds: Sets the time to idle for an element before it expires.
i.e. The maximum amount of time between accesses before an element expires
timeToLiveSeconds: Sets the time to live for an element before it expires.
i.e. The maximum time between creation time and when an element expires.
Eu entendo timeToIdleSeconds
Mas isso significa que após a criação e primeiro acesso de um item de cache, o timeToLiveSeconds não é mais aplicável?