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

后端 未结 5 1358
攒了一身酷
攒了一身酷 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:21

    How about using Redis as a messaging queue.It supports both in-memory and can be made persistent once data does not fit the RAM.

提交回复
热议问题