Home Backend Development Python Tutorial Python 2.7 Basic Tutorial: Errors and Exceptions

Python 2.7 Basic Tutorial: Errors and Exceptions

Dec 24, 2016 pm 05:13 PM
python

.. _tut-errors:

====================================

Errors and Exceptions Errors and Exception

==================================

Until now error messages haven't been more than mentioned , but if you have tried

out the examples you have probably seen some. There are (at least) two

distinguishable kinds of errors: *syntax errors* and *exceptions*.

No further discussion so far Error messages, but

may have encountered some in the examples you have experimented with. There are (at least) two kinds of errors in Python: *syntax errors* and *exceptions*

.

.. _tut-syntaxerrors:

Syntax Errors Syntax errors

========================

Syntax errors, also known as parsing errors, are Perhaps the most common kind of

complaint you get while you are still learning Python:

Grammar errors, also known as interpretation errors, may be the most common kind of

complaint you get while you are still learning Python::

>>> while True print 'Hello world'

'File "", line 1, in ?

' 'Hello world' the offending line and displays a little 'arrow' pointing at

the earliest point in the line where the error was detected. The error is

caused by (or at least detected at) the token *preceding* the arrow: in the

example, the error is detected at the keyword :keyword:`print`, since a colon

(``':'``) is missing before it. File name and line number are printed so you

know where to look in case the input came from a script.

The parser repeats the line with the error and displays a small "arrow" at the earliest error found in the line. The error

(at least the one that is detected) occurs where the arrow *points*. The error in the example appears on the keyword

:keyword:`print` because there is a colon missing before it ( ``':'`` ). The file name and line number will also be displayed,

so you can know which script the error comes from and where it is.

.. _tut-exceptions:

Exceptions

==========

Even if a statement or expression is syntactically correct, it may cause an

error when an attempt is made to execute it . Errors detected during execution

are called *exceptions* and are not unconditionally fatal: you will soon learn

how to handle them in Python programs. Most exceptions are not handled by

programs, however, and result in error messages as shown here:

Even if a statement is completely grammatically correct, an error may occur when trying to execute it. Errors detected while the program is running are called exceptions. They usually do not cause fatal problems, and you will soon learn how to control them in Python programs. Most exceptions will not be handled by the program, but will display an error message::

>>> 10 * (1/0)

Traceback (most recent call last):

File "< ;stdin>", line 1, in ?

ZeroDivisionError: integer division or modulo by zero

>>> 4 + spam*3

Traceback (most recent call last):

File "

NameError: name 'spam' is not defined

>>> '2' + 2

Traceback (most recent call last):

File " ", line 1, in ?

TypeError: cannot concatenate 'str' and 'int' objects

The last line of the error message indicates what happened. Exceptions come in

different types, and the type is printed as part of the message: the types in

the example are :exc:`ZeroDivisionError`, :exc:`NameError` and :exc:`TypeError`.

The string printed as the exception type is the name of the built-in exception

that occurred. This is true for all built-in exceptions, but need not be true

for user-defined exceptions (although it is a useful convention). Standard

exception names are built-in identifiers (not reserved keywords ).

The last line of the error message indicates what error occurred. Exceptions also have different types. The exception types are displayed as part of the error message: the exceptions in the example are zero division error ( :exc:`ZeroDivisionError` ), naming error ( :exc:`NameError`) and Type

Error ( :exc:`TypeError` ). When printing error information, the exception type is used as the built-in name of the exception

Show. This is true for all built-in exceptions, but not necessarily for user-defined exceptions (although this is a useful convention). Standard exception names are built-in identifiers (no reserved keywords).

The rest of the line provides detail based on the type of exception and what

caused it.

The rest of the line provides detail based on the type of exception and what

caused it.

The preceding part of the error message shows the context where the exception

happened, in the form of a stack traceback. In general it contains a stack

traceback listing source lines; however, it will not display lines read from

standard input.

The first half of the error message lists the location where the exception occurred in the form of a stack. Normally the source code lines are listed on the stack, however, source code coming from standard input is not displayed.

:ref:`bltin-exceptions` lists the built-in exceptions and their meanings.

:ref:`bltin-exceptions` lists the built-in exceptions and their meanings.

.. _tut-handling:

Handling Exceptions Control exceptions

============================

It is possible to write programs that handle selected exceptions. Look at the

following example, which asks the user for input until a valid integer has been

entered, but allows the user to interrupt the program (using :kbd:`Control-C` or

whatever the operating system supports); note that a user-generated interruption

is signaled by raising the :exc:`KeyboardInterrupt` exception. :

Programs can be written to control known exceptions. See the example below, which requires the user to enter information until a valid integer is obtained, and allows the user to interrupt the program (using :kbd:`Control-C` or

any other operation supported by the operating system); required Note that user-generated interrupts will throw the

:exc:`KeyboardInterrupt` exception. ::

>>> while True:

... try:

... x = int(raw_input("Please enter a number: "))

... break

.. . except ValueError:

... print "Oops! That was no valid number. Try again..."

...

The :keyword:`try` statement works as follows.

:keyword:` The try` statement works as follows.

* First, the *try clause* (the statement(s) between the :keyword:`try` and

:keyword:`except` keywords) is executed. The part between the :keyword:`try` and :keyword:`except` keywords).

* If no exception occurs, the *except clause* is skipped and execution of the

:keyword:`try` statement is finished.

If no exception occurs, the *except clause* is skipped and execution of:keyword:`try` After the statement is executed, it is ignored.

* If an exception occurs during execution of the try clause, the rest of the

clause is skipped. Then if its type matches the exception named after the

:keyword:`except` keyword, the except clause is executed, and then execution

continues after the :keyword:`try` statement.

If an exception occurs during the execution of the try clause, the rest of the clause will be ignored.

If the exception matches the exception type specified after the :keyword:`except` keyword, the corresponding except clause

will be executed. Then continue executing the code after the :keyword:`try` statement.

* If an exception occurs which does not match the exception named in the except

clause, it is passed on to outer :keyword:`try` statements; if no handler is

found, it is an *unhandled exception* and execution stops with a message as

shown above.

If an exception occurs and there is no matching branch in the except clause, it will be passed to the upper level:keyword:`try` statement . If the corresponding processing statement is still not found in the end, it becomes an *unhandled exception*, terminates the program, and displays a prompt message.

A :keyword:`try` statement may have more than one except clause, to specify

handlers for different exceptions. At most one handler will be executed.

Handlers only handle exceptions that occur in the corresponding try clause, not

in other handlers of the same :keyword:`try` statement. An except clause may

name multiple exceptions as a parenthesized tuple, for example:

an :keyword:`try` statement may contain multiple except clauses , specifying the processing of different exceptions respectively. At most, only one branch will be executed. The exception handler will only handle the corresponding try clause.

Exceptions that occur in the same :keyword:`try` statement, exceptions that occur in other clauses will not be handled

. An except clause may list multiple exception names in parentheses, for example::

... except (RuntimeError, TypeError, NameError):

... pass

The last except clause may omit the exception name (s), to serve as a wildcard.

Use this with extreme caution, since it is easy to mask a real programming error

in this way! It can also be used to print an error message and then re-raise

the exception (allowing a caller to handle the exception as well):

The last except clause can omit the exception name and use it as a wildcard. Be sure to use this method with caution, because it is likely to mask the real program error and prevent people from discovering it! It can also be used to print a line of error information and then rethrow the exception (which allows the caller to handle the exception better)::

import sys

try:

f = open('myfile.txt')

s = f.readline()

i = int(s.strip())

except IOError as (errno, strerror):

print "I/O error({0}): {1}" .format(errno, strerror) except ValueError:

print "Could not convert data to an integer." except:

print "Unexpected error:", sys.exc_info()[0]

The :keyword:`try` ... :keyword:`except` statement has an optional *else

clause*, which, when present, must follow all except clauses. It is useful for

code that must be executed if the try clause does not raise an exception. For

example:

:keyword:`try` ... :keyword:`except` statement can have an *else clause*,

This clause can only Appears after all except clauses. When the try statement does not throw an exception and some code needs to be executed, you can use the

clause. For example::

for arg in sys.argv[1:]:

try:

f = open(arg, 'r') except IOError:

print 'cannot open', arg

else:

                                                                     print arg, 'has', len(f.readlines()), ' the :keyword:`try` clause because it avoids accidentally catching an exception

that wasn't raised by the code being protected by the :keyword:`try` ...

:keyword:`except` statement.

Using a :keyword:`else` clause is better than appending code to a :keyword:`try` clause because

this avoids :keyword:`try` ... :keyword:`except` accidental interceptions that are not expected Exceptions thrown by the code they protect.

When an exception occurs, it may have an associated value, also known as the

exception's *argument*. The presence and type of the argument depend on the

exception type.

When an exception occurs, there may be an Auxiliary values, present as *parameters* of the exception. Whether this parameter exists and what type

is depends on the type of exception.

The except clause may specify a variable after the exception name (or tuple).

The variable is bound to an exception instance with the arguments stored in

``instance.args``. For convenience, the exception instance defines

:meth:`__str__` so the arguments can be printed directly without having to

reference ``.args``.

After the exception name (list), you can also specify a variable for the except clause. This variable is bound to an exception instance and is stored in the arguments of instance.args. For convenience, the exception instance

defines :meth:`__str__` so that the print parameters can be accessed directly without referencing

``.args``.

One may also instantiate an exception first before raising it and add any

attributes to it as desired. :

This practice is not encouraged. Instead, a better approach is to pass a parameter to the exception (or a tuple if you want to pass multiple

parameters) and bind it to the message property. Once an exception occurs, it will

bind all specified properties before throwing. ::

>>> try:

... raise Exception('spam', 'eggs')

... except Exception as inst:

... print type(inst) # the exception instance

... print inst.args # arguments stored in .args

   ...  print inst                                                                                                                     print ' y =', y

...

('spam', 'eggs')

('spam', 'eggs')

x = spam

y = eggs

If an exception has an argument, it is printed as the last part ('detail') of

the message for unhandled exceptions.

For unhandled exceptions, if it has an argument, do It will be printed as the last part of the error message

("details").

Exception handlers don't just handle exceptions if they occur immediately in the

try clause, but also if they occur inside functions that are called (even

indirectly) in the try clause. For example:

Exception handlers Not only can exceptions that occur directly in the try clause be handled, even if an exception occurs in the function called (even indirectly), it can also be handled. For example::

>>> def this_fails():

... x = 1/0

...

>>> try:

... this_fails()

... except ZeroDivisionError as detail:

... print 'Handling run-time error:', detail

...

Handling run-time error: integer division or modulo by zero

.. _tut- raising:

Raising Exceptions Throwing exceptions

==============================

The :keyword:`raise` statement allows the programmer to force a specified

exception to occur. For example:

The programmer can use the :keyword:`raise` statement to force the specified exception to occur. For example::

>>> raise NameError('HiThere')

Traceback (most recent call last):

File "", line 1, in ?

NameError: HiThere

The sole argument to :keyword:`raise` indicates the exception to be raised.

This must be either an exception instance or an exception class (a class that

derives from :class:`Exception`).

To throw The exception raised is identified by the unique parameter of :keyword:`raise`. It must be an exception instance or an exception class (a class inherited from :class:`Exception`).

If you need to determine whether an exception was raised but don't intend to

handle it, a simpler form of the :keyword:`raise` statement allows you to

re-raise the exception:

if you If you need to know whether an exception is thrown, but don't want to handle it, the :keyword:`raise`

statement allows you to easily re-throw the exception.

  >>> try:

  ...  raise NameError('HiThere')

  ... except NameError:

  ...  print 'An exception flew by!'

  ...  raise

...

An exception flew by!

Traceback (most recent call last):

File "", line 2, in ?

NameError: HiThere

.. _tut-userexceptions:

User-defined Exceptions User-defined exceptions

========================================

Programs may name their own exceptions by creating a new exception class (see

:ref:`tut-classes` for more about Python classes). Exceptions should typically

be derived from the :exc:`Exception` class, either directly or indirectly. For

example:

You can name your own exceptions by creating a new exception type in the program (for the content of Python classes, please see:ref:`tut-classes`). Exception classes should usually be derived directly or indirectly from the

:exc:`Exception` class, for example::

>>> class MyError(Exception):

... def __init__(self, value): A ... Self.value = Value

... def __Str __ (Self):

... Return Repr (Self.value)

...

& gt; & gt; try:

:

:

:

:

:

:

:

:

:

:

:

:

:

🎜 ... raise MyError(2*2)🎜🎜 ... except MyError as e:🎜🎜 ... print 'My exception occurred, value:', e.value🎜🎜 ...🎜🎜 My exception occurred, value : 4🎜🎜 >>> raise MyError('oops!')🎜

Traceback (most recent call last):

File "", line 1, in ?

__main__.MyError: 'oops!'

In this example, the default :meth:`__init__` of : class:`Exception` has been

overridden. The new behavior simply creates the *value* attribute. This

replaces the default behavior of creating the *args* attribute.

In this example, :class:`Exception` The default :meth:`__init__` is overridden. New way to easily create

value properties. This replaces the original way of creating *args* attributes.

Exception classes can be defined which do anything any other class can do, but

are usually kept simple, often only offering a number of attributes that allow

information about the error to be extracted by handlers for the exception. When

creating a module that can raise several distinct errors, a common practice is

to create a base class for exceptions defined by that module, and subclass that

to create specific exception classes for different error conditions:

Exception classes can Define anything that can be defined in any other class, but usually to keep it simple, only a few attribute information is added to it for exception handling handlers to extract. If a newly created module needs to throw several different errors, a common approach is to define an exception base class for the module, and then derive corresponding exception subclasses for different error types. ::

class Error(Exception):

"""Base class for exceptions in this module."""

pass

class InputError(Error):

"""Exception raised for errors in the input.

                                                                                                                                                                         Attributes: :

                 self.expr = expr

                                                                                                                                                                                                                                                                                                     ​prev -- state at beginning of transition

next -- attempted new state

                                                                                                                                                                                          . self.next = next

                  self.msg = msg

Most exceptions are defined with names that end in "Error," similar to the

naming of the standard exceptions. Error" at the end.

Many standard modules define their own exceptions to report errors that may

occur in functions they define. More information on classes is presented in

chapter :ref:`tut-classes`.

Many standard modules are defined in Their own exceptions to report errors that may occur in the functions they define. See chapter :ref:`tut-classes` for further information about classes.

.. _tut-cleanup:

Defining Clean-up Actions Defining clean-up actions

================================ ======================

The :keyword:`try` statement has another optional clause which is intended to

define clean-up actions that must be executed under all circumstances. For

example:

:keyword:`try` statement has another optional clause, the purpose is to define the function

that must be executed under any circumstances. For example::

>>> try:

... raise KeyboardInterrupt

... finally:

... print 'Goodbye, world!'

...

Goodbye, world!

Traceback (most recent call last):

File "", line 2, in ?

KeyboardInterrupt

A *finally clause* is always executed before leaving the :keyword:`try`

statement , whether an exception has occurred or not. When an exception has

occurred in the :keyword:`try` clause and has not been handled by an

:keyword:`except` clause (or it has occurred in a :keyword:`except` or

:keyword:`else` clause), it is re-raised after the :keyword:`finally` clause has

been executed. The :keyword:`finally` clause is also executed "on the way out"

when any other clause of the :keyword:`try` statement is left via a

:keyword:`break`, :keyword :`continue` or :keyword:`return` statement. A more

complicated example (having :keyword:`except` and :keyword:`finally` clauses in

the same :keyword:`try` statement works as of Python 2.5):

No matter whether an exception occurs or not, the *finally clause* will always be executed after the program leaves :keyword:`try`. When an

exception not caught by :keyword:`except` occurs in a :keyword:`try` statement (or it occurs in a :keyword:`except` or :keyword:`else` clause), in

It will be re-thrown after the :keyword:`finally` clause is executed. If the :keyword:`try` statement is exited by :keyword:`break`, :keyword:`continue` or :keyword:`return`, the :keyword:`finally` clause will also be executed. Here is a more complex example (the :keyword:`except` and :keyword:`finally` clauses in the same :keyword:`try` statement work the same as in Python 2.5)::

>>> def divide(x, y):

... try:

... result = x / y

... except ZeroDivisionError:

... print "division by Zero! "l ... Else:

... Print" Result is ", Result

... Finally:

... Print" Executing Finally Clause "

...

& gt; & gt ;> divide(2, 1)

result is 2

executing finally clause

>>> divide(2, 0)

division by zero!

executing finally clause

>> > divide("2", "1")

executing finally clause

Traceback (most recent call last):

File "", line 1, in ?

File " ", line 3, in divide

TypeError: unsupported operand type(s) for /: 'str' and 'str'

As you can see, the :keyword:`finally` clause is executed in any event. The

:exc:`TypeError` raised by dividing two strings is not handled by the

:keyword:`except` clause and therefore re-raised after the :keyword:`finally`

clause has been executed.

as you As you can see, the :keyword:`finally` clause will execute in any case. :exc:`TypeError`

is thrown when two strings are divided and is not caught by the :keyword:`except` clause, so it is re-thrown after the

:keyword:`finally` clause is executed. .

In real world applications, the :keyword:`finally` clause is useful for

releasing external resources (such as files or network connections), regardless

of whether the use of the resource was successful.

In real world applications In applications, the :keyword:`finally` clause is used to release external resources (files

or network connections, etc.) regardless of whether there are errors during their use.

.. _tut-cleanup-with:

Predefined Clean-up Actions

============================ ============================

Some objects define standard clean-up actions to be undertaken when the object

is no longer needed , regardless of whether or not the operation using the object

succeeded or failed. Look at the following example, which tries to open a file

and print its contents to the screen. :

Some objects define standard cleanup behavior , regardless of whether the object operation is successful or not, it will take effect when the object is no longer needed. The following example attempts to open a file and print its contents to the screen. ::

for line in open("myfile.txt"):

print line

The problem with this code is that it leaves the file open for an indeterminate

amount of time after the code has finished executing. This is not an issue in

simple scripts, but can be a problem for larger applications. The

:keyword:`with` statement allows objects like files to be used in a way that

ensures they are always cleaned up promptly and correctly. :

The problem with this code is that the open file is not closed immediately after the code is executed. This is fine in simple scripts

, but can cause problems in larger applications. The :keyword:`with` statement allows objects such as files to be cleaned up in a timely and accurate manner. ::

with open("myfile.txt") as f:

for line in f:

print line

After the statement is executed, the file *f* is always closed, even if a

problem was encountered while processing the lines. Other objects which provide

predefined clean-up actions will indicate this in their documentation. After the

statement is executed, the file *f* will always be closed, even if an error occurs while processing the data in the file.

If other objects provide predefined cleaning behaviors, please check their documentation.

The above is the basic tutorial of Python 2.7: errors and exceptions. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP and Python: Code Examples and Comparison PHP and Python: Code Examples and Comparison Apr 15, 2025 am 12:07 AM

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

How is the GPU support for PyTorch on CentOS How is the GPU support for PyTorch on CentOS Apr 14, 2025 pm 06:48 PM

Enable PyTorch GPU acceleration on CentOS system requires the installation of CUDA, cuDNN and GPU versions of PyTorch. The following steps will guide you through the process: CUDA and cuDNN installation determine CUDA version compatibility: Use the nvidia-smi command to view the CUDA version supported by your NVIDIA graphics card. For example, your MX450 graphics card may support CUDA11.1 or higher. Download and install CUDAToolkit: Visit the official website of NVIDIACUDAToolkit and download and install the corresponding version according to the highest CUDA version supported by your graphics card. Install cuDNN library:

Python vs. JavaScript: Community, Libraries, and Resources Python vs. JavaScript: Community, Libraries, and Resources Apr 15, 2025 am 12:16 AM

Python and JavaScript have their own advantages and disadvantages in terms of community, libraries and resources. 1) The Python community is friendly and suitable for beginners, but the front-end development resources are not as rich as JavaScript. 2) Python is powerful in data science and machine learning libraries, while JavaScript is better in front-end development libraries and frameworks. 3) Both have rich learning resources, but Python is suitable for starting with official documents, while JavaScript is better with MDNWebDocs. The choice should be based on project needs and personal interests.

Detailed explanation of docker principle Detailed explanation of docker principle Apr 14, 2025 pm 11:57 PM

Docker uses Linux kernel features to provide an efficient and isolated application running environment. Its working principle is as follows: 1. The mirror is used as a read-only template, which contains everything you need to run the application; 2. The Union File System (UnionFS) stacks multiple file systems, only storing the differences, saving space and speeding up; 3. The daemon manages the mirrors and containers, and the client uses them for interaction; 4. Namespaces and cgroups implement container isolation and resource limitations; 5. Multiple network modes support container interconnection. Only by understanding these core concepts can you better utilize Docker.

MiniOpen Centos compatibility MiniOpen Centos compatibility Apr 14, 2025 pm 05:45 PM

MinIO Object Storage: High-performance deployment under CentOS system MinIO is a high-performance, distributed object storage system developed based on the Go language, compatible with AmazonS3. It supports a variety of client languages, including Java, Python, JavaScript, and Go. This article will briefly introduce the installation and compatibility of MinIO on CentOS systems. CentOS version compatibility MinIO has been verified on multiple CentOS versions, including but not limited to: CentOS7.9: Provides a complete installation guide covering cluster configuration, environment preparation, configuration file settings, disk partitioning, and MinI

How to operate distributed training of PyTorch on CentOS How to operate distributed training of PyTorch on CentOS Apr 14, 2025 pm 06:36 PM

PyTorch distributed training on CentOS system requires the following steps: PyTorch installation: The premise is that Python and pip are installed in CentOS system. Depending on your CUDA version, get the appropriate installation command from the PyTorch official website. For CPU-only training, you can use the following command: pipinstalltorchtorchvisiontorchaudio If you need GPU support, make sure that the corresponding version of CUDA and cuDNN are installed and use the corresponding PyTorch version for installation. Distributed environment configuration: Distributed training usually requires multiple machines or single-machine multiple GPUs. Place

How to choose the PyTorch version on CentOS How to choose the PyTorch version on CentOS Apr 14, 2025 pm 06:51 PM

When installing PyTorch on CentOS system, you need to carefully select the appropriate version and consider the following key factors: 1. System environment compatibility: Operating system: It is recommended to use CentOS7 or higher. CUDA and cuDNN:PyTorch version and CUDA version are closely related. For example, PyTorch1.9.0 requires CUDA11.1, while PyTorch2.0.1 requires CUDA11.3. The cuDNN version must also match the CUDA version. Before selecting the PyTorch version, be sure to confirm that compatible CUDA and cuDNN versions have been installed. Python version: PyTorch official branch

How to install nginx in centos How to install nginx in centos Apr 14, 2025 pm 08:06 PM

CentOS Installing Nginx requires following the following steps: Installing dependencies such as development tools, pcre-devel, and openssl-devel. Download the Nginx source code package, unzip it and compile and install it, and specify the installation path as /usr/local/nginx. Create Nginx users and user groups and set permissions. Modify the configuration file nginx.conf, and configure the listening port and domain name/IP address. Start the Nginx service. Common errors need to be paid attention to, such as dependency issues, port conflicts, and configuration file errors. Performance optimization needs to be adjusted according to the specific situation, such as turning on cache and adjusting the number of worker processes.

See all articles