search
HomeBackend DevelopmentPHP TutorialPHP technology Session hashing and expired recycling_PHP tutorial

PHP technology Session hashing and expired recycling_PHP tutorial

Jul 20, 2016 am 10:57 AM
phpsessionRecycleexisttechnologyofInternet applicationcalculateExpired

Session, in computers, especially in network applications, is called a "session".

A server has relatively large traffic. Due to the needs of the program, the session expiration time is set to 3 hours, resulting in the accumulation of nearly 200,000 session files under /tmp. This in turn leads to a sharp increase in CPU usage by the kernel. Because session reading and writing involves random reading and writing of a large number of small files, and they are concentrated in one directory, iowait also increases sharply.

First consider putting the session into memory

The easiest way is to mount /tmp as a tmpfs file system, that is, in memory

The second step is to store the session in a different directory

php itself supports multi-level hashing of session

In php.ini, change

<ol class="dp-c"><li class="alt"><span><span>session.save_path = /tmp;  </span></span></li></ol>

is changed to

<ol class="dp-c"><li class="alt"><span><span>session.save_path = </span><span class="string">"2;/tmp/session"</span><span>  </span></span></li></ol>

means to store the session in the /tmp/session folder. And it uses 2 and hashing.

Save and exit, restart php after the third step is completed

The third step, create the session storage folder

php will not automatically go there Create these folders, but some scripts for creating the folders are provided in the source file. The following script is also easy to use

<ol class="dp-c">
<li class="alt"><span><span>I=</span><span class="string">"0 1 2 3 4 5 6 7 8 9 a b c d e f"</span><span>   </span></span></li>
<li>
<span class="keyword">for</span><span> acm in </span><span class="vars">$I</span><span>;   </span>
</li>
<li class="alt">
<span class="keyword">do</span><span>   </span>
</li>
<li>
<span class="keyword">for</span><span> x in </span><span class="vars">$I</span><span>;   </span>
</li>
<li class="alt">
<span class="keyword">do</span><span>   </span>
</li>
<li>
<span class="func">mkdir</span><span> -p /tmp/session/</span><span class="vars">$acm</span><span>/</span><span class="vars">$x</span><span>;   </span>
</li>
<li class="alt"><span>done;   </span></li>
<li><span>done   </span></li>
<li class="alt">
<span class="func">chown</span><span> -R nobody:nobody /tmp/session   </span>
</li>
<li>
<span class="func">chmod</span><span> -R 1777 /tmp/session </span>
</li>
</ol>

Because /tmp is used for memory, all files in it will be lost after the server is restarted, so you need to add the above script to /etc/rc.local , and should be placed before starting php

The fourth step, session recycling

The session will expire after session.gc_maxlifetime, but will not be deleted immediately , after a long time, it will cause /tmp space to occupy a lot of space. I'm too lazy to study the specific deletion algorithm. The following command can delete expired sessions. The expiration time I define here is 3 hours.

<ol class="dp-c"><li class="alt"><span><span>find /tmp/session -amin +180 -</span><span class="func">exec</span><span> rm -rf {} ;  </span></span></li></ol>

Put it into cron, execute it every 10 minutes, and you’re done.

This article introduces Session hashing and expired recycling in four steps. I hope it will be helpful to you.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445794.htmlTechArticleSession, in computers, especially in network applications, is called a session. The traffic of a server is relatively large. Due to the needs of the program, the session expiration time is set to 3 hours, resulting in...
Statement
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
How can you check if a PHP session has already started?How can you check if a PHP session has already started?Apr 30, 2025 am 12:20 AM

In PHP, you can use session_status() or session_id() to check whether the session has started. 1) Use the session_status() function. If PHP_SESSION_ACTIVE is returned, the session has been started. 2) Use the session_id() function, if a non-empty string is returned, the session has been started. Both methods can effectively check the session state, and choosing which method to use depends on the PHP version and personal preferences.

Describe a scenario where using sessions is essential in a web application.Describe a scenario where using sessions is essential in a web application.Apr 30, 2025 am 12:16 AM

Sessionsarevitalinwebapplications,especiallyfore-commerceplatforms.Theymaintainuserdataacrossrequests,crucialforshoppingcarts,authentication,andpersonalization.InFlask,sessionscanbeimplementedusingsimplecodetomanageuserloginsanddatapersistence.

How can you manage concurrent session access in PHP?How can you manage concurrent session access in PHP?Apr 30, 2025 am 12:11 AM

Managing concurrent session access in PHP can be done by the following methods: 1. Use the database to store session data, 2. Use Redis or Memcached, 3. Implement a session locking strategy. These methods help ensure data consistency and improve concurrency performance.

What are the limitations of using PHP sessions?What are the limitations of using PHP sessions?Apr 30, 2025 am 12:04 AM

PHPsessionshaveseverallimitations:1)Storageconstraintscanleadtoperformanceissues;2)Securityvulnerabilitieslikesessionfixationattacksexist;3)Scalabilityischallengingduetoserver-specificstorage;4)Sessionexpirationmanagementcanbeproblematic;5)Datapersis

Explain how load balancing affects session management and how to address it.Explain how load balancing affects session management and how to address it.Apr 29, 2025 am 12:42 AM

Load balancing affects session management, but can be resolved with session replication, session stickiness, and centralized session storage. 1. Session Replication Copy session data between servers. 2. Session stickiness directs user requests to the same server. 3. Centralized session storage uses independent servers such as Redis to store session data to ensure data sharing.

Explain the concept of session locking.Explain the concept of session locking.Apr 29, 2025 am 12:39 AM

Sessionlockingisatechniqueusedtoensureauser'ssessionremainsexclusivetooneuseratatime.Itiscrucialforpreventingdatacorruptionandsecuritybreachesinmulti-userapplications.Sessionlockingisimplementedusingserver-sidelockingmechanisms,suchasReentrantLockinJ

Are there any alternatives to PHP sessions?Are there any alternatives to PHP sessions?Apr 29, 2025 am 12:36 AM

Alternatives to PHP sessions include Cookies, Token-based Authentication, Database-based Sessions, and Redis/Memcached. 1.Cookies manage sessions by storing data on the client, which is simple but low in security. 2.Token-based Authentication uses tokens to verify users, which is highly secure but requires additional logic. 3.Database-basedSessions stores data in the database, which has good scalability but may affect performance. 4. Redis/Memcached uses distributed cache to improve performance and scalability, but requires additional matching

Define the term 'session hijacking' in the context of PHP.Define the term 'session hijacking' in the context of PHP.Apr 29, 2025 am 12:33 AM

Sessionhijacking refers to an attacker impersonating a user by obtaining the user's sessionID. Prevention methods include: 1) encrypting communication using HTTPS; 2) verifying the source of the sessionID; 3) using a secure sessionID generation algorithm; 4) regularly updating the sessionID.

See all articles

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.