News Feed
Jobs Feed
Sections




News Archive
Andrew Martin's Blog:
Serving PHP session files from a RAM based disk (tmpfs) for AWS Micro Instance
October 06, 2011 @ 11:42:36

Andrew Martin has a new post to his blog looking at a technique that could be used to help minimize some of the performance issues you could see on AWS micro instances dealing with PHP session handling. His alternative is serving them from a RAM-based disk instead.

It's rare to find a web server with slow disk I/O performance, but Amazon's EC2 micro-instances are one such example. Their EBS disk subsystem access is rated "low", and this can have a detrimental effect on HTTP throughput. [...] This leaves sessions, which can be written to a redundant and fault tolerant storage system. [...] In order to speed up the disk access, a RAM-based disk can be mounted over the session directory. This has the disadvantage of being volatile - the data is lost in case of a server reboot, or the mount point being unmounted. However if tolerable, storing sessions in RAM insulates the application from poor filesystem performance.

He mentions the two types of kernels that can be used, ramfs and tmpfs, and the specifics of using a tmpfs filesystem to implement the technique (complete with command line calls to make it happen).

0 comments voice your opinion now!
session files ram disk tmpfs storage performance


blog comments powered by Disqus

Similar Posts

Maggie Nelson's Blog: Beyond Error Logs

Padraic Brady's Blog: Zend Framework: Surviving The Deep End - Performance Optimisation

PHPBuilder.com: 6 PHP Performance Tips for Producing Highly Optimized Code

PHPBuilder.com: Implementing User Authentication and Session Management with PHP

Lukas Smith's Blog: Remember: be nice to byte code caches


Community Events











Don't see your event here?
Let us know!


zendframework2 example release testing conference introduction phpunit series symfony2 opinion development interview database functional podcast framework rest community language usergroup

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework