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.
我看到的每一个使用 Jake Wharton 的 DiskLRUCache 的例子,我都看到人们在主线程上调用 cache.get 和 cache.put(即没有打开一个新线程)。
这不坏吗?另外,如果我想使用线程调用来获取字符串,那么在不创建侦听器的情况下最好的方法是什么?
即目前我有: String data = cache.get("data");
但由于它是磁盘 I/O 操作,我宁愿将 cache.get 移动到不同的线程。