That would be nice to be able to set some conditions on @Cache\* annotations. ``` PHP <?php /** * @Cacheable(caches="users", key="#user.getUsername()", condition="#age > 18") */ public function getUser(User $user, $age) { } ```