When developing your APIs always remember that an error scenario will always arise. The user may send an incorrect request or there might be some errors within your logic that might have been overlooked. In any condition, your ultimate aim is to never let the system stop execution. Alec develops a set of APIs and […]
IT
Bench-marking RESTful APIs | On the Cloud
Have you ever load tested your APIs on the cloud? In this post we explore how to load test and benchmark different RESTful framework’s performance Recap 🤠 In our previous post, we did some benchmarks of frameworks from different languages. Our test hardware/server was my Raspberry Pi 3 Model B from 2016, it was a […]
Series 3: Linked List Examples
Now that Gopher has taught us all about Linked List, let us take a look at a common implementation of Linked List which helps us with many a daily tasks. LRU Cache Before we understand how Linked List can be used to achieve LRU Caching we would need to revisit certain basic concepts. What does […]
Containerisation – Go Chronicles
Take the first step towards deploying applications! Container technology is currently the hottest technology used to launch applications. And the most popular product out there is Docker! Know more about the concepts behind this awesome technology in this series 8 posts Shipping lightweight Docker images to production environments is the standard practice in the industry. […]
Bonus: The Image “Trim Down”
Shipping lightweight Docker images to production environments is the standard practice in the industry. But the task of trimming down the image size can be a daunting task. In this post, we find out how images can be trimmed down by using the builder pattern or multi-stage method. It was smack mid-winter and like any […]
Bharath Uday – Go Chronicles
Show all Funda Bytes Tools & Frameworks Deployments on Cloud Data Structures & Algorithms Kickstart with Go Microservices Latest posts Now that Gopher has taught us all about Heaps, let us take a look at some of the common implementations of Heap which helps us with many a daily tasks. Aug 16, 2021 What is […]
Microservices II: Basic Microservices Development – Go Chronicles
Once the pre-development checklists are marked, we start with building the API’s. During this step we assume that design and data interfaces are decided so that engineering teams can start development. Any subsequent change in design and API design will involve updates to the underlying process as well. 6 posts Microservices II: Basic Microservices Development […]
Part I: Setup a Repository
Before developing, we need to decide on the code organization and repository structure. Always create a skeleton structure of folders that will act as a foundation for further code development if you want to avoid frequent refactors. How to structure/organize a project in production ? It’s almost time to code! But first, we’ll need a […]
Vedashree Patil – Go Chronicles
Show all Funda Bytes Tools & Frameworks Deployments on Cloud Data Structures & Algorithms Kickstart with Go Microservices Latest posts Multi Tenant Architectures Discover how Kubernetes and vclusters go hand in hand when it comes to incorporating multi tenancy . This. post is a step by step guide to deploy a simple API for multiple […]
Part II : The Kubernetes Dictionary
What’s the connection between Kubernetes and chocolates? Bet you don’t know. Read on to find out. Have you ever watched Willy Wonka (or Charlie) and the Chocolate factory? I read the book (way better by the way!) and it’s surely a timeless children’s classic. A “rags to riches” type of story of a poor boy […]
Series Introduction: Making your APIs ready for the Real World
The basic APIs are in place! But they aren’t really ready for the real world. Ensure that your APIs are robust, error-free and easy to use and understand for all the consumers Hey there! Welcome to our new series! This series is a a short sequel to our previous two series Microservices-I: Pre-Development and Microservices-II:Basic […]
Series 2: Queues
What is a Queue? How do I enter values in to a Queue? How do i remove these values? Have you been to the movies ? Movie Queues In this episode, we will follow Gopher to the movies.As you all know Gopher by nature is a procrastinator and hence has the habit of doing things […]
Kickstart with Devtron – I: CI/CD Made Easy!
Kubernetes deployment via automated CI/CD pipelines is always a hassle that requires some expertise in the DevOps field. In this post, we talk about Devtron; a tool to create CI/CD pipelines for Kubernetes in a no Code format. Are you a DevOps? Even if you aren’t, you must know that the job isn’t a piece […]
Multi Tenant Architectures – Go Chronicles
Delve into the world of multi-tenant architectures and explore the complexities of shared infrastructures, scalability challenges, and data isolation techniques used to build SaaS applications 2 posts Multi Tenant Architectures Discover how Kubernetes and vclusters go hand in hand when it comes to incorporating multi tenancy . This. post is a step by step guide […]
