Message Queue vs Task Queue difference

前端 未结 3 1149
误落风尘
误落风尘 2021-02-01 05:52

I wonder what is the difference between them. Are they describing the same thing?

Is Google App Engine Service Task Queue is an implementation of Message Queue?

3条回答
  •  不思量自难忘°
    2021-02-01 06:11

    GAE's Task Queues are a means for allowing an application to do background processing, and they are not going to serve the same purpose as a Message Queue. They are very different things that serve different functions.

    A Message Queue is a mechanism for sharing information, between processes, threads, systems.

    An AppEngine task Queue is a way for an AppEngine application to say to itself, I need to do this, but I am going to do it later, outside of the context of a client request.

提交回复
热议问题