Golang is an open-source, light-weight procedural programming language, developed in 2007 by Robert Griesemer, Rob Pike, and Ken Thompson at Google but launched in 2009 as an open-source programming language. Go is statically typed and compiled language, it is fast and easy to learn. Go is used for building servers and web apps. Why Go … Continue reading Go : Just Go for it
Tag: go
Google Cloud Pub/Sub messages using Go package : pubsub
Package pubsub provides an easy way to publish and receive Google Cloud Pub/Sub messages, hiding the details of the underlying server RPCs (Remote Procedure Calls). Google Cloud Pub/Sub is a many-to-many, asynchronous messaging system that decouples senders and receivers. Publishing Google Cloud Pub/Sub messages are published to topics. Topics may be created using the pubsub package like: topic, err … Continue reading Google Cloud Pub/Sub messages using Go package : pubsub
Want To Subscribe to RethinkDB Record Using Go? Here’s How!
RethinkDB is a document storage database with excellent clustering capabilities. However it can also auto notify when records are updated in real-time, and this article is going to explore how to do that using Go. RethinkDB is a document storage database with real-time record pub/sub capabilities. What is RethinkDB? RethinkDB is a document storage database with a lot of … Continue reading Want To Subscribe to RethinkDB Record Using Go? Here’s How!