In this article we will learn about reverse proxy, where to use it and how to implement it in Golang. A reverse proxy is a server that sits in front of web servers and forwards client (e.g. web browser) requests to web servers. They give you control over the request from clients and responses from … Continue reading Simple and Powerful ReverseProxy in Go
Category: Go
Golang or Ruby
Content posted here with the permission of the author PJ Hagerty, who is Developer, writer, speaker, musician, and Developer Advocate. He is known to travel the world speaking about programming and the way people think and interact. Ruby and Go are very popular programming languages and they stand out among the hundreds of the programming languages … Continue reading Golang or Ruby
Subscribing to RethinkDB Record Changes in Go
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 Subscribing to RethinkDB Record Changes in Go