{
"events": [
{
"eventId": 1,
"type": "newMessage",
"payload": {
"msgId": "57883346846815032",
"chat": {
"chatId": "681869378@chat.agent",
"type": "channel",
"title": "The best channel"
},
"from": {
"userId": "1234567890",
"firstName": "Name",
"lastName": "SurName"
},
"timestamp": 1546290000,
"text": "Hello!",
"parts": [
null
]
}
}
]
}
package main
import (
"fmt"
"log"
"net/http"
)
func main() {
http.HandleFunc("/", handler) // each request calls handler
log.Fatal(http.ListenAndServe("localhost:8000", nil))
}
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "URL.Path = %q\n", r.URL.Path)
}
package main
import (
"fmt"
"log"
"net/http"
)
func main() {
http.HandleFunc("/", handler) // each request calls handler
log.Fatal(http.ListenAndServe("localhost:8000", nil))
}
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "URL.Path = %q\n", r.URL.Path)
}
Вот эмитация 100 записей в базу. Выполнение кода занимает 11,5 сек.
База для хранения данных на сервере, по любому горутинам придется встречаться