Golang – encoding/csv: Reading is slow
github.com
Golang – encoding/csv: Reading is slow
1–10 of 102 posts
Re: Golang – encoding/csv: Reading is slow
#2Re: Golang – encoding/csv: Reading is slow
#3Python's csv module uses an internal module _csv which is written in C. So I'm not sure it's all that surprising that a Go implementation is a bit slower.
Re: Golang – encoding/csv: Reading is slow
#4Python's csv module uses an internal module _csv which is written in C. So I'm not sure it's all that surprising that a Go implementation is a bit slower.
Re: Golang – encoding/csv: Reading is slow
#5Python's csv module uses an internal module _csv which is written in C. So I'm not sure it's all that surprising that a Go implementation is a bit slower.
Re: Golang – encoding/csv: Reading is slow
#6Python's csv module uses an internal module _csv which is written in C. So I'm not sure it's all that surprising that a Go implementation is a bit slower.
You should contribute this knowledge to the GitHub issue.
Lots of modules in the stdlib are written in C.
Re: Golang – encoding/csv: Reading is slow
#7Python's csv module uses an internal module _csv which is written in C. So I'm not sure it's all that surprising that a Go implementation is a bit slower.
You should contribute this knowledge to the GitHub issue.
Re: Golang – encoding/csv: Reading is slow
#8Python's csv module uses an internal module _csv which is written in C. So I'm not sure it's all that surprising that a Go implementation is a bit slower.
How about Java? It is quite funny Java version is much faster than Python version even when Python version does use C ? Something fishy going on.
Re: Golang – encoding/csv: Reading is slow
#9Python's csv module uses an internal module _csv which is written in C. So I'm not sure it's all that surprising that a Go implementation is a bit slower.
How about Java? It is quite funny Java version is much faster than Python version even when Python version does use C ? Something fishy going on.
Re: Golang – encoding/csv: Reading is slow
#10Python's csv module uses an internal module _csv which is written in C. So I'm not sure it's all that surprising that a Go implementation is a bit slower.
How about Java? It is quite funny Java version is much faster than Python version even when Python version does use C ? Something fishy going on.