mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
18 lines
543 B
XML
18 lines
543 B
XML
<slide title="Programming Issues">
|
|
<blurb>
|
|
PHP can run mostly unmodified when dealing with clustering solutions, except
|
|
for one crucial area, session management.
|
|
</blurb>
|
|
<blurb title="The Problem">
|
|
When you're remembering data about users, it needs to be saved universally,
|
|
however, php sessions are only natively adapted to using files.
|
|
</blurb>
|
|
<list title="Solutions">
|
|
<bullet effect="slide">NFS</bullet>
|
|
<bullet effect="slide">RDBM</bullet>
|
|
<bullet effect="slide">Msession</bullet>
|
|
<bullet effect="slide">SRM</bullet>
|
|
</list>
|
|
|
|
</slide>
|