Questions about service-oriented architecture, or designing software as a collection of services.

learn more… | top users | synonyms

0
votes
2answers
91 views

Queuing rpc calls

I'm designing a system which listens to JSON RPC calls from clients, piles them up inside a list, and if the list gets full it should store them in a DB and keep receiving calls. My original plan is ...