Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Merge small-changes branch into master #8418

Merged
merged 13 commits into from
Dec 18, 2020
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Barny Shergold <barny.shergold@vaimo.com>
  • Loading branch information
chiranjeevi-cj and Barny Shergold authored Dec 15, 2020
commit 661b00adf7d44498a63ff487df83bf441e0d256d
4 changes: 2 additions & 2 deletions src/guides/v2.3/performance-best-practices/software.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ See [Magento 2.2.x technology stack requirements]({{page.baseurl}}/install-gde/s

## Operating system

Operating system configurations and optimizations are similar for Magento as other high-load web applications. As the number of concurrent connections handled by the server increases, the number of available sockets can become fully allocated. The Linux kernel supports a mechanism to "reuse" TCP connections. To enable these kernel settings, set the following values in `/etc/sysctl.conf`:
Operating system configurations and optimizations are similar for Magento as compared to other high-load web applications. As the number of concurrent connections handled by the server increases, the number of available sockets can become fully allocated. The Linux kernel supports a mechanism to "reuse" TCP connections. To enable this mechanism, set the following value in `/etc/sysctl.conf`:

{:.bs-callout-info}
Enabling net.ipv4.tcp_tw_reuse is useless for incoming connections.
Enabling net.ipv4.tcp_tw_reuse has no effect on incoming connections.

```terminal
net.ipv4.tcp_tw_reuse = 1
Expand Down
4 changes: 2 additions & 2 deletions src/guides/v2.4/performance-best-practices/software.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ See [Magento technology stack requirements]({{page.baseurl}}/install-gde/system-

## Operating system

Operating system configurations and optimizations are similar for Magento as other high-load web applications. As the number of concurrent connections handled by the server increases, the number of available sockets can become fully allocated. The Linux kernel supports a mechanism to "reuse" TCP connections. To enable these kernel settings, set the following values in `/etc/sysctl.conf`:
Operating system configurations and optimizations are similar for Magento as compared to other high-load web applications. As the number of concurrent connections handled by the server increases, the number of available sockets can become fully allocated. The Linux kernel supports a mechanism to "reuse" TCP connections. To enable this mechanism, set the following value in `/etc/sysctl.conf`:

{:.bs-callout-info}
Enabling net.ipv4.tcp_tw_reuse is useless for incoming connections.
Enabling net.ipv4.tcp_tw_reuse has no effect on incoming connections.

```terminal
net.ipv4.tcp_tw_reuse = 1
Expand Down