How to Create a REST Service on Google AppEngine Using GO - Part 2

This article is part two of a series of articles on GO development on Google Cloud. Read part one here

Now that we've covered the basics of project creation on Google App Engine, it's time to get a REST service up and running on it. In order to accomplish that, we will be using the following tools:

  1. Google Cloud Datastore - Datastore is a NoSQL document database built for automatic scaling, high performance, and ease of application development. The documentation can be found here.
  2. Gin - Gin is an HTTP web framework written in Go (Golang) and features a Martini-like API with much better performance. The documentation can be found here.

READ MORE

How to Create a Go Project on Google App Engine - Part 1

As Cloud computing continues to expand, I'm always looking to learn new things, and looking out for the next big thing on the web. But from time to time, I like to come back to Google to see how its Cloud Platform is doing - and I must say, Google seems to always have everything figured out.

READ MORE