Integrating Nancy with protobuf-net

Yan Cui

I help clients go faster for less using serverless technologies.

Over the last couple of days I’ve been playing around with Nancy, one of a number of micro web frameworks now available for the .Net platform. You can read more about Nancy on their github readme page but in short it’s an ultra lightweight, easily extensible framework that lets you run a HTTP web server in a number of hosting environments (IIS, WCF, or inside a simple console app) and can integrate with a number of view engines (Razor, Spark, NDjango, etc).

Protobuf-net on the other hand, is Marc Gravell‘s .Net implementation of Google’s Protocol Buffer messaging format, which as I have shown, is over 10x faster than the BCL’s BinaryFormatter!

Getting Started

If you’re not familiar with how Nancy works, I’d recommend taking half an hour or so and go through the documentations first.

Deserializer

On the deserialization side, Nancy supports JSON and XML binding out of the box, to add protocol buffer support to the equation all you need to do is to create a class that implements the IBodyDeserializer interface and the Nancy bootstrapper will take care of the rest (it auto registers all the implementations of the relevant interfaces at startup).

However, if there are more than one implementation of IBodyDeserialize defined in the loaded assembly which can deserialize the content type application/x-protobuf then at runtime the deserializer will be chosen at random.

Serialization

To serialize the response body with protobuf-net, all you need to do in the handler is to return a Response object and serialize the object you want to return like this:

Alternatively, you can create a subtype of Response and take in the object you want to use as the response body and automatically serialize it, something along the line of:

Source Code

You can download the source code for the demo app here, there’s also a simple unit test using Nancy.Testing helper framework.


Whenever you’re ready, here are 3 ways I can help you:

  1. Production-Ready Serverless: Join 20+ AWS Heroes & Community Builders and 1000+ other students in levelling up your serverless game.
  2. Consulting: If you want to improve feature velocity, reduce costs, and make your systems more scalable, secure, and resilient, then let’s work together and make it happen.
  3. Join my FREE Community on Skool, where you can ask for help, share your success stories and hang out with me and other like-minded people without all the negativity from social media.

 

1 thought on “Integrating Nancy with protobuf-net”

  1. Another option for the serialization side is to create an “AsProtoBuf()” extension method, which follows the convention of the other response formatters in Nancy (e.g. AsJson, AsXml, etc). Take a peek at the FormatterExtensions class and JsonResponse class for examples of this.

Leave a Comment

Your email address will not be published. Required fields are marked *