What is the best language to use for making API orders?

1

1

I have heard that python is at a disadvantage when it comes to making API requests. It’s built on C which makes it slower. Are there any languages that are low level enough to make fast requests and still API accessible?

Oscar M

Posted 2018-08-23T05:33:47.283

Reputation: 11

Question was closed 2018-09-12T19:38:13.923

1You will very rarely find that the choice of language is a major bottleneck,Raghav Sood 2018-08-23T05:45:08.673

I'd suggest Golang, it's fast enough and is designed API and website hosting. C is too low level, and C++ might still be a little low level.MCCCS 2018-08-23T07:11:03.993

1

C is not a slow language. C and its derivative C++ have become dominant because they are fast. C is fast enough that I have heard it called a "glorified assembler'. I don't believe any python implementation is written in native machine language . ( https://stackoverflow.com/questions/21717660/what-exactly-is-the-python-interpreter-implemented-with )

dbkeys 2018-08-23T10:22:02.450

Answers

-1

Go - easy concurrency, productive and effcient

r--w

Posted 2018-08-23T05:33:47.283

Reputation: 31