Reasons to give up Python and choose Go in 2021
In the past period of time, the Go language Chinese website has promoted a lot of Python-related public accounts. Many people are surprised: Why are all the Python accounts promoted? In fact, the main reason is that there are too many public accounts in the Python category, and many of them have very many fans. I am also quite puzzled. But they are worth learning from, and they also show that Go still has a long way to go.
Which would you choose between Python and Go? If you have a deeper understanding of Go (Golang), then you will definitely choose it. Otherwise Python will be selected. So let's discuss it. Python friends, here are 5 reasons to choose Go. Let us read this article together.
"Python is very powerful, especially Python 3 with its async capabilities, but Go will completely take its place in large enterprises..."
If you really If you understand the above, you can try to use the Go programming language. I think Go is a very simple programming language that can adapt to any application environment, even simpler than Javascript programming. This is probably why the Go programming language has become popular in recent years.
In this article, I will compare the following aspects of both languages. Parameters along these lines will help you decide which language is better suited for your project at hand.
1. Performance
2. Scalability
3. Practical application
4. Execution method
5. Program library
6. Code readability
The website TreeScale.com homepage and API are web applications based on certain analysis tools. Here is their tech stack:
React.js Home Frontend
Django Python Home Backend and Authentication Service
Node.js API Service
PostgreSQL database, Cassandra logging system
Custom container registry in use Rust Language
Python
Repustate is almost entirely a Python shop. They use Django to implement the API and website. Therefore it is reasonable to (currently) use Python to implement the Arabic Sentiment Engine in order to maintain code consistency. For prototyping and implementation only, Python is a good choice.
Its expression ability is very powerful, and third-party class libraries are also very good. If you are working with web services, Python is the perfect choice. However, everything slows down when you perform low-level calculations and rely heavily on hash tables (dictionary types in Python) for comparisons. We could process about two to three Arabic documents per second, but that was too slow. By comparison, their English sentiment engine can process about 500 documents per second.
As you can see from the above, the basic framework is completely based on the separation of microservices and logic (separation of front-end and back-end), and is even implemented with completely different technologies.
The main reason why they integrate API services and backends into one project is that they are similar in many places and are coded in multiple languages or technologies with a lot of duplicate code. Finally, they need to spend a lot of time personalizing Django's API services, especially when it comes to customizing JSON responses.
I think using Django is great when you develop some normal applications, but when you need higher performance and some personalized modules, using Django makes it more complicated.
Why choose Go programming?
1. Compile into a single binary file
Golang is a compiled language, and the developers of Googe have put a lot of effort into it. It uses static linking to actually combine all relevant library files and modules into a single binary file based on the operating system type and environment. This also means that if you want to compile a backend application to a Linux operating system and an X86 CPU based application, You just download the compiled binary application to the server and then the backend application works without any related files.
2. Static type system
The type system is very important for large-scale applications. Python is a great and fun language, but sometimes you'll see some weird exceptions when you try to use a variable as an integer variable when it's actually of type string.
def some_view (request): user_id = request.POST.get ('id', 0)
Such code will cause Django to crash.
And Go will compile and tell you it's a compiler error, which is where it buys time on stupid problems.
3. Optimization (Performance)
Surprisingly, Go is better than Python (version 2 or 3) in most application scenarios Faster. The results of the comparison can be seen in benchmarks, which is of course unfair and depends on the type of application and user use case.
As far as we are concerned, Go has its own multi-threading module and CPU scalability, resulting in higher performance. Whenever we need to perform some internal requests, we can use Goroutine to execute them separately, which saves ten times resources than threads in Python. With these built-in language features, we can save a lot of resources (memory and CPU).
4. Go no longer requires a web framework
This is a cool thing for a programming language. The creators and community of the Go language have many built-in tools supported by the core language, and in most cases you no longer need any third-party libraries. For example, it has built-in http, json and html templates. You can build even very complex API services without having to worry about finding third-party libraries on Github.
Of course, Go also has many libraries and frameworks for building web projects, but I recommend that you do not use third-party libraries to build web projects or API services, because in most cases, use standard Library packages will make your life easier.
5. Better IDE support and debugging
IDE support is one of the most important considerations when you are trying to change programming languages. Friendly IDEs can save an average of 80% of programming time. Go Plugin for JetBrains IDEA, also provides other support, such as (Webstorm, PHPStorm, etc.). This plugin provides any services needed in project development. The powerful JetBrains IDEA can make your development more powerful, and even better is Goland.
Choose Go or go home?
Mozilla is internally converting its vast underlying logging architecture to Go, in part due to powerful goroutines. The Go language was designed by people at Google, and support for concurrency was a top priority at the beginning of the design, rather than being added later like various other Python solutions. So we started switching from Python to Go.
Although our Go code product is not yet officially released, the results are encouraging. Now we can process a thousand documents per second, use less memory, and don't need to debug the problem we encountered in Python: ugly multiprocess/gevent/"Why Control-C can't kill processes".
Why do we love Go?
Anyone who knows even a little bit about how programming languages work (interpreted vs. compiled, dynamic vs. static) will say: "Tch, of course Go is faster". Yes, we could also rewrite everything in Java and see similar and faster improvements, but that's not why Go wins.
The code you wrote in Go seems correct. I don't know what's going on, but once the code is compiled (fast compilation speed), you get the feeling that the code just works (not only runs correctly, but is logically correct). I know that sounds unreliable, but it's true.
This is very similar to Python in terms of redundancy (or non-redundancy). It targets functions first and foremost, so functional programming will be easy to understand. Sure, Go threads and channels make your job easier, you get big performance gains from static typing, and you have better control over memory allocation, but you don't have to pay much for language expressiveness.
According to our code statistics, after rewriting the project in Go, we reduced the code by 64%.
You don't need to debug code that doesn't exist. Less code means fewer bugs!
Conclusion
Go provides us with great flexibility. A language can be used in all user scenarios and work well in all user scenarios. In the backend and API services, we achieved a 30% performance optimization. Now I can process logs in real time, convert to database, and handle one or more services via WebSocket! This is a very powerful feature provided by the Go language.
For more go language knowledge, please pay attention to the go language tutorial column on the php Chinese website.
The above is the detailed content of Reasons to give up Python and choose Go in 2021. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The speed of mobile XML to PDF depends on the following factors: the complexity of XML structure. Mobile hardware configuration conversion method (library, algorithm) code quality optimization methods (select efficient libraries, optimize algorithms, cache data, and utilize multi-threading). Overall, there is no absolute answer and it needs to be optimized according to the specific situation.

It is impossible to complete XML to PDF conversion directly on your phone with a single application. It is necessary to use cloud services, which can be achieved through two steps: 1. Convert XML to PDF in the cloud, 2. Access or download the converted PDF file on the mobile phone.

There is no built-in sum function in C language, so it needs to be written by yourself. Sum can be achieved by traversing the array and accumulating elements: Loop version: Sum is calculated using for loop and array length. Pointer version: Use pointers to point to array elements, and efficient summing is achieved through self-increment pointers. Dynamically allocate array version: Dynamically allocate arrays and manage memory yourself, ensuring that allocated memory is freed to prevent memory leaks.

An application that converts XML directly to PDF cannot be found because they are two fundamentally different formats. XML is used to store data, while PDF is used to display documents. To complete the transformation, you can use programming languages and libraries such as Python and ReportLab to parse XML data and generate PDF documents.

XML can be converted to images by using an XSLT converter or image library. XSLT Converter: Use an XSLT processor and stylesheet to convert XML to images. Image Library: Use libraries such as PIL or ImageMagick to create images from XML data, such as drawing shapes and text.

XML formatting tools can type code according to rules to improve readability and understanding. When selecting a tool, pay attention to customization capabilities, handling of special circumstances, performance and ease of use. Commonly used tool types include online tools, IDE plug-ins, and command-line tools.

There is no APP that can convert all XML files into PDFs because the XML structure is flexible and diverse. The core of XML to PDF is to convert the data structure into a page layout, which requires parsing XML and generating PDF. Common methods include parsing XML using Python libraries such as ElementTree and generating PDFs using ReportLab library. For complex XML, it may be necessary to use XSLT transformation structures. When optimizing performance, consider using multithreaded or multiprocesses and select the appropriate library.

To convert XML images, you need to determine the XML data structure first, then select a suitable graphical library (such as Python's matplotlib) and method, select a visualization strategy based on the data structure, consider the data volume and image format, perform batch processing or use efficient libraries, and finally save it as PNG, JPEG, or SVG according to the needs.
