Basic Server In GoLang
Wed Dec 28 2022
A server is a machine that provides data on request, the application that channels it, and the database which organizes the information.
Deploying AWS Lambda in GoLang with Serverless framework
Wed Dec 07 2022
AWS Lambda is a serverless computing service provided by Amazon Web Services (AWS) AWS Lambda lets you run code without provisioning or managing servers.
Encoding and Decoding
Thu Dec 01 2022
Encoding and decoding are used in many forms of communications, including computing, data communications, programming, digital electronics and human communications. These two processes involve changing the format of content for optimal transmission or storage.
Caching In GoLang Using Redis
Wed Nov 09 2022
Most applications depend on data, whether it comes from a database or an API sends a network request to the API server and returns the data as the response, These round trips take time and can increase your application response time to users. Furthermore, most APIs limit the number of requests they can serve an application within a specific time frame a process known as rate limiting.