如何创建没有最大值且不会过期的Caffeine缓存?

How to create Caffeine cache that has no max value and does not expire?

我实现了一个 Caffeine 缓存如下:

private static Cache<String, MyObject> MyObjectCache = Caffeine.newBuilder()
    .build();

如何确保缓存没有最大大小并且不会过期?

Caffeine 缓存可以通过以下方式实现没有最大值和过期:

private static Cache<String, MyObject> MyObjectCache = Caffeine.newBuilder()
    .build();

即它是在没有最大值和默认到期时间的情况下创建的。