Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将一个 ArrayList 存储到 GAE 内存缓存中。我知道不能保证数据会保留,所以如果我存储一个数组列表,这意味着我会丢失列表中的所有项目,对吗?
我想知道它,因为我希望所有项目都在那里或根本没有项目。不接受部分物品移除。
是的,如果您将数组列表存储在单个 memcache 值中,如果该值被驱逐,那么整个数组列表将被驱逐。