Sobes.tech
Senior

What are you currently doing at your current job? What are the main tasks?

sobes.tech AI

Answer from AI

In my current job, I develop high-load microservices in Go. My main tasks include designing and optimizing APIs, working with databases (PostgreSQL, Redis), as well as implementing monitoring and logging systems. Additionally, I participate in code reviews and automate CI/CD processes to improve the quality and speed of releases.

Here's a simple example of an HTTP service in Go:

package main

import (
    "fmt"
    "net/http"
)

func handler(w http.ResponseWriter, r *http.Request) {
    fmt.Fprintf(w, "Hello, World!")
}

func main() {
    http.HandleFunc("/", handler)
    http.ListenAndServe(":8080", nil)
}

This example illustrates the basic structure of a web service that I work with, expanding it to solve business tasks.