python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to measure RTT/latency through TCP clients (created in GoLang) from a TCP server created in GoLang?
so I am hosting a TCP server through GoLang and then I want to connect to my TCP server using multiple TCP clients and measure the RTT every time a new client is connected. I haven't found anything th...
zahid kamil
Votes: 0
Answers: 1
Encoding and decoding structs of
I'm trying to encode and decode structs, I've searched around quite a bit and a lot of the questions regarding this topic is usually people who want to encode primitives, or simple structs. What I wan...
PhilipB
Votes: 0
Answers: 1
GORM GOLANG/Go msSQL UNIQUEIDENTIFIER inside struct
Hello I have the struct like here named person and when I call my rest endpoint and get data from mssql database (where ID is
ID UNIQUEIDENTIFIER DEFAULT NEWSEQUENTIALID() )
package entities import ( ...
EagleCode
Votes: 0
Answers: 3
CGo tests with a DLL
I'm currently using CGO to use a library in C through a DLL.
Everything works and I can use my code on top of the library, build it & so on.
The problem I have is to implement tests with a DLL. Ri...
Otor
Votes: 0
Answers: 1