What degree of low-level programming can be achieved with Languages like Go?
Go and D provide garbage collection, and yet they claim to be system programming languages. What degree of low-level programming can be achieved with languages having garbage collection?
Optimizing hash lookup & memory performance in Go
As an exercise, I’m implementing HashLife in Go.
Container types in Golang
For a non-OOP language like google Go, is it idiomatic to go about implementing new container types using datatypes like arrays or lists so as to implement convenient functionality like contains
method which is absent from all in built container types?
Sets Data Structure in Golang
I really like google golang but could some one explain what the rationale is for the implementors having left out a basic data structure such as sets from the standard library?
godror error orahlp.go:563:19: undefined: VersionInfo
I am new to Go with Oracle SQL DB connection, I just created a Go project and setting up for it to connect to my Oracle DB, below are some of the info of my setup, and what I have tried to troubleshoot.
Math library methods in Google’s Go Programming Language
I have been programming in google Golang and have been enjoying it due to its brevity but I find it surprising that almost all its Math standard library methods are for the floating point type. Is there any particular reason why these methods do not exist for ints?
When would you need “hundreds of thousands” of threads?
Erlang, Go, and Rust all claim in one way or another that they support concurrent programming with cheap “threads”/coroutines. The Go FAQ states:
What can Go chan do that a list cannot?
I want to know in which situation Go chan makes code much simpler than using list or queue or array that is usually available in all languages.
clojure/erlang/go for high volume server
I have a project that will need to handle 1000s of requests a second with a decent amount of processing for each. For the most part, the processing will be done on a list of items, basically filtering it and returning a smaller list. This process can be done in parallel fairly easily and I should also say, speed is important. I’ve narrowed my language of choice for the project down to clojure, erlang, and go, and have researched them all to a moderate degree.
How to fetch values from database columns without using structs? [closed]
Closed 2 days ago.