Is there a way to control the flow of requests coming into the ServiceStack host. I'm looking for something like Observable.Buffer in reactive extensions, or a way to page up requests into buffers, or a place to implement something like this in the message flow. Mainly to handle traffic floods and spikes.
|
Have a look at the Messaging support in ServiceStack. There are Redis and In Memory MQ Hosts that allow you to defer execution of incoming requests. Once you have registered an The SMessage demo project shows an example of manually creating and publishing request dtos vs executing them synchronously in the same service. Once the message handlers for all messages you want your MQ broker to handle are registered, e.g:
Any Request DTO published will automatically queue in the MQ Broker queue and be processed in the background as fast as they can with as many background threads you specify. Note: deferred requests are no longer in the HTTP Context so you lose access to HTTP params like Custom HTTP Headers. |
|||||||||
|