What solutions exist for a JVM-based queue that is larger than heap?

后端 未结 5 1383
攒了一身酷
攒了一身酷 2021-02-15 19:44

I am looking at possible technology choices for queues (or perhaps streams are a better description) in a JVM-based system.

Some requirements:

  • Must be ac
5条回答
  •  忘掉有多难
    2021-02-15 20:43

    I ran across this FIFO queue with spill to disk which is kind of interesting and has some of the properties I'm looking for:

    http://code.google.com/p/ashes-queue/

提交回复
热议问题