Skip to main content

Posts

Showing posts from March, 2021

New Year, New Techniques

Been a long time since my last post!  After Christmas, at work we have been reinventing our current eCommerce solution with a whole new fresh approach and designing a whole layer of Micro-services out of Kubernetes and gRPC .  I'm still getting my head around the configuration of Kube and deployment strategy - fortunately I have a fantastic supporting team helping me through that, but I've been jumping right in the deep end of gRPC. It allows you to specify much like an interface, defining what functions can be called from a package and what properties the request and response consists of, so any language can consume this configuration and call it appropriately.  It also reduces latency by removing the typical handshakes of the HTTP protocol.  But that doesn't mean that you cannot write typical REST endpoints to it.  To the contrary, be sure to take a look at the NPM package gRPC GraphQL Server .  It seems quite new but does a fantastic job. To compliment all of this, I ha