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.
在我正在使用的 JSF 应用程序中,我想构建一个队列来处理以下场景:
面对这种情况,我开始寻找如何实现它的信息,很快发现我缺乏必要的知识来了解选择哪种队列类型(其中似乎有数百个),尤其是如何限制搜索调用到每秒 10 个。
我很高兴获得有关采取哪种方法的任何指导方针。
我最终使用 a并通过为队列中处理的每个项目java.util.Queue添加 a 来处理呼叫率。Thread.sleep(100)似乎工作正常。
java.util.Queue
Thread.sleep(100)