Back to blog

Why should you use Golang in your app?

What is Golang and why should you try it out?

Appwrite has just announced support for Go SDK and Function runtime in version 1.6. The Go programming language (also known as Golang) is popular for its concurrency model, speed, and simple URL-based dependency management.

With Appwrite’s new Go runtime, you can take advantage of Go’s speed to handle complex tasks like calculations, statistics, or file transformations more efficiently.

This blog is going to go over Go strengths, limitations, and how you can potentially leverage it in your projects, whether you’re already a Go developer or a JS/Python developer looking to write faster applications.

What is the Go programming language?

Go, or Golang, is a statically typed programming language developed by Google. It's designed for simplicity, reliability, and efficiency, making it ideal for both beginners and experienced developers.

The language was designed by Robert Griesemer, Rob Pike, and Ken Thompson, who aimed to address some of the common criticisms of other languages used at Google, such as C++ and Java, particularly in terms of compilation time and ease of use.

Go was officially announced to the public in November 2009, and its 1.0 version was released in March 2012. Since then, it has steadily gained popularity, especially in the fields of cloud services, DevOps, and microservices architectures.

What does the Go programming language do?

The Go programming language offers a few features that make it popular among developers:

  • Standard library: Go comes with a rich standard library that includes everything from web servers to cryptography. This extensive library means you can often avoid third-party dependencies, leading to more secure and maintainable code.

  • Code package management: Code package management helps organize and use both your own and external code packages, and it allows you to publish packages with just a few commands.

  • Static typing: Static typing in Go ensures that data types are correct and compatible, preventing common errors found in dynamically typed languages.

  • Platform independence: Go's platform independence means you can compile Go code to run on almost any operating system.

  • Concurrency model: Go's concurrency model uses lightweight goroutines, which act like threads, and channels that let these goroutines communicate. The syntax is simple and resembles patterns in dynamic languages, focusing on using interfaces rather than inheritance. This makes it easier to write programs that can handle multiple tasks simultaneously.

Benefits of Golang:

  • Performance

Go is compiled to machine code, which makes it incredibly fast. This speed is particularly beneficial for backend development, where performance can significantly impact user experience and scalability.

  • Concurrent programming

One key reason to use Golang is its support for concurrent programming with Goroutines, which are lightweight functions that can run independently. Occupying just 2 KB of memory, Goroutines allow thousands of concurrent processes without crashing your system, unlike Java’s heavyweight threads. This makes Golang ideal for creating compact and efficient software.

  • Cross-platform compatibility

Go is designed to be cross-platform. You can compile Go code to run on various operating systems, ensuring that your applications can reach a broader audience without significant modifications.

  • Growing ecosystem

The Go community is vibrant and growing, with numerous libraries and frameworks available for full-stack development. Tools like Gin (a web framework) and GORM (an ORM library) make it easier to build robust applications quickly.

Limitations of Golang:

  • Limited library support

The ecosystem for third-party libraries in Go is not as extensive as more established languages like Java or Python. This can sometimes make it difficult to find libraries for specific use cases.

  • Verbose error handling

Error handling in Go can be verbose and repetitive. The language's design encourages explicit error checking, which can lead to a lot of boilerplate code.

  • Manual memory management limitations

Although Go has garbage collection, it does not provide as fine-grained control over memory management as languages like C or C++. This can be a limitation for applications requiring highly optimized memory usage.

  • No native GUI development

Go lacks native support for building graphical user interfaces, requiring reliance on third-party libraries or other languages for GUI applications.

What is Golang used for?

Golang is a versatile language with a wide range of applications:

Web development

Go is widely used to build scalable and high-performance web applications. Its standard library has powerful tools for handling HTTP requests, routing, and data encoding. Frameworks like Gin and Echo add features like middleware support and routing optimization, making it easy to handle high traffic. Plus, Go’s quick compilation and simple syntax help developers build and deploy web apps quickly.

Here’s how you would use Appwrite Go functions to create an account:

Go
package main

import (
	"fmt"

	"github.com/appwrite/sdk-for-go/account"
	"github.com/appwrite/sdk-for-go/client"
)

func main() {
	appwriteClient := client.NewClient()
	appwriteClient.SetProject("<PROJECT_ID>")
	appwriteClient.SetKey("<API_KEY>")

	service := account.NewAccount(appwriteClient)

	response, error := service.CreateEmailPasswordSession(
		"[email protected]",
		"example1234",
	)

	if error != nil {
		fmt.Println(error)
		return
	}

	fmt.Println(response)
}

Microservices

Go’s fast compilation times and minimal runtime overhead make it well-suited for developing lightweight and easy-to-maintain microservices. Its fast compilation and minimal runtime overhead make it efficient. With features like goroutines, Go allows you to handle many tasks at once, which is crucial for microservices that need to operate independently and work seamlessly with others. Plus, Go’s simple syntax reduces the cognitive load on developers.

Cloud and distributed systems

The language’s ability to handle high concurrency aligns well with the needs of cloud-based applications and distributed architectures. Go is the language behind key cloud-native tools like Docker and Kubernetes, which are central to modern cloud infrastructure. Go’s performance and concurrency capabilities effectively manage containerized applications and orchestrate complex systems.

DevOps tools

Go’s ease of use and fast execution help create scripts and tools that automate repetitive tasks and manage system operations. Prominent DevOps tools like Terraform, which automates infrastructure provisioning, and Prometheus, a monitoring and alerting toolkit, are developed in Go. These tools benefit from Go’s efficient execution and ease of deployment.

Data processing

Go is great for building tools and services that handle large data volumes. Its efficient memory management and concurrency features enable effective data processing and manipulation. Go’s speed supports high-speed data pipelines, real-time analytics, and other data-intensive applications, managing multiple data streams concurrently for scalable and efficient handling.

Creating a database with Appwrite Go functions:

Go
package main

import (
"fmt"
"github.com/appwrite/sdk-for-go/client"
"github.com/appwrite/sdk-for-go/databases"
)

func main() {
appwriteClient := client.NewClient()
appwriteClient.SetProject("<PROJECT_ID>")
appwriteClient.SetKey(“<API_KEY>”)
appwriteDatabases := databases.NewDatabases(appwriteClient)

response, err := appwriteDatabases.Create("unique()", "Pokemon")

if err != nil {
	fmt.Println(err)
	return
}

fmt.Println(response)
}

Command-line tools

Go is a popular choice for creating command-line applications due to its straightforward syntax and powerful standard library. It supports the creation and management of command-line interfaces, making it easy to develop system utilities and scripts. Many open-source command-line tools benefit from Go’s simplicity, speed, and ease of deployment.

Real-time applications

Go’s efficient concurrency model is well-suited for real-time applications that require handling numerous simultaneous tasks. Chat services, gaming servers, and real-time data processing systems all benefit from Go’s ability to manage concurrent operations smoothly. Go’s goroutines and channels provide a simple yet powerful way to handle real-time communication and processing.

APIs and backend services

Go is often used for developing APIs and backend services due to its performance and scalability. Its fast execution and efficient concurrency handling are perfect for building backend infrastructure that supports high traffic and complex data interactions. Go’s robust standard library simplifies API development with strong support for HTTP and JSON, ensuring backend services can scale to meet growing demands.

Here’s how you would create an account email and password session using Appwrite’s SDK.

Go
package main

import (
	"fmt"

	"github.com/appwrite/sdk-for-go/account"
	"github.com/appwrite/sdk-for-go/client"
)

func main() {
	appwriteClient := client.NewClient()
	appwriteClient.SetProject("<PROJECT_ID>")
	appwriteClient.SetKey("<API_KEY>")

	service := account.NewAccount(appwriteClient)

	response, error := service.CreateEmailPasswordSession(
		"[email protected]",
		"example1234",
	)

	if error != nil {
		fmt.Println(error)
		return
	}

	fmt.Println(response)
}

Go vs. Python

  • Performance: Go generally offers better performance than Python due to its compiled nature, whereas Python is an interpreted language.

  • Concurrency: Go has built-in support for concurrency with goroutines, making it suitable for high-performance, concurrent applications. Python has concurrency libraries like asyncio, but it’s not as seamless as Go.

  • Ease of use: Python is known for its simplicity and readability, making it a popular choice for beginners. Go is also designed to be simple and readable, but its static typing can be more cumbersome for quick scripting tasks.

  • Ecosystem: Python has a vast ecosystem, particularly in data science, machine learning, and web development. Go’s ecosystem is growing, especially in cloud and systems programming.

Go vs. Java

  • Performance: Both Go and Java offer strong performance, but Java's JVM allows it to perform well in highly optimized environments. Go has a simpler runtime, which can lead to more predictable performance.

  • Concurrency: Go’s concurrency model using goroutines is simpler and more lightweight compared to Java’s thread model, making it easier to write concurrent applications in Go.

  • Static typing: Both languages are statically typed, but Go’s type system is simpler and less verbose than Java’s, reducing boilerplate code.

  • Ecosystem: Java has a mature ecosystem with extensive libraries and frameworks, especially for enterprise applications. Go’s ecosystem is newer but rapidly growing, particularly in cloud services and microservices.

Go vs. C++

  • Performance: C++ generally offers higher performance due to its lower-level memory management, but Go provides a good balance of performance and ease of use.

  • Memory management: Go has automatic garbage collection, which simplifies memory management compared to C++’s manual memory management.

  • Ease of use: Go’s syntax is simpler and more modern, making it easier to learn and use compared to C++.

  • Safety: Go is designed with a focus on simplicity and safety, reducing common programming errors found in C++, such as memory leaks and pointer arithmetic issues.

Go vs. Node.js (JavaScript)

  • Performance: Go typically offers better raw performance due to its compiled nature, whereas Node.js relies on the V8 JavaScript engine.

  • Concurrency: Go’s goroutines provide a straightforward model for concurrent execution, while Node.js uses an event-driven, non-blocking I/O model that can be more complex to manage for certain tasks.

  • Ease of use: JavaScript’s ubiquity and ease of use make Node.js accessible, especially for web developers. Go is also easy to use but requires learning a new language syntax.

  • Ecosystem: Node.js has a vast ecosystem with npm, making it easy to find libraries for almost any need. Go’s ecosystem is more focused, particularly strong in areas like web servers and cloud services.

What companies use Go?

Uber

Uber uses Go for its high-performance, scalable backend services. The concurrency model of Go allows Uber to handle millions of ride requests simultaneously. Go's efficiency helps reduce latency and improve the overall user experience. More specifically, they mention high developer accessibility and reliability:

“Go typically takes just a few days for a C++, Java or Node.js developer to learn, and the code is easy to maintain. This service has had 99.99% uptime since inception. Importantly, we haven’t seen any issues with Go’s runtime.”

Dropbox

Dropbox migrated its performance-critical components from Python to Go, which significantly improved its file synchronization performance. Go's faster execution speed and concurrency were key factors in handling Dropbox's large-scale data processing. Dropbox also open-sourced its Go libraries to help the community build large production systems.

SoundCloud

SoundCloud uses Go to build internal services that require high concurrency and performance. Go's simplicity and ease of maintenance also help their developers to iterate quickly and deploy updates smoothly. Here’s what developers at SoundCloud say about Golang:

Static typing and fast compilation enable us to do near-realtime static analysis and unit testing during development. It also means that building, testing and rolling out Go applications through our deployment system is as fast as it gets.

Monzo

Monzo, a UK digital bank, started using Golang for its microservices architecture before eventually moving its entire backend infrastructure over to Go. Monzo’s systems engineer, Matt Heath, praised Go for its simplicity and speed:

Go is a perfect language for creating microservice architectures, and the concurrency features, and the language in general, has allowed the easy creation of small and simple networked services at Monzo that are focused around the 'single responsibility principle'.

Learning Go programming language

Go is pretty simple to learn, especially if you’ve already worked with JavaScript, Python, or C++. Go’s learning hub offers a wide variety of resources, from guided courses to video tutorials and example-led lessons.

One of the best ways to learn Go is to follow their guided learning journeys. They offer dedicated video and written tutorials for web developers and complete beginners.

You can get help and support from the large Go developer community, specifically on Reddit.

Conclusion

Golang is a great choice for web app development due to its performance and concurrency capabilities.

If you're building a high-traffic, performance-intensive app that needs to be reliable and maintainable, Appwrite’s new Go SDK + Function runtime can help you leverage Go’s speed and simplicity.

Here are some more resources to get you started with Go and Appwrite Go SDK:

Subscribe to our newsletter

Sign up to our company blog and get the latest insights from Appwrite. Learn more about engineering, product design, building community, and tips & tricks for using Appwrite.