几个大对象的PHP对象序列化

时间:2013-07-28 01:13:13

标签: php performance session serialization large-data

我正在开发一个php应用程序,它在与用户交互的过程中构建了几个大型对象集合。对象需要持久化来自用户的请求,并且我已经使用php会话来成功实现这一点。这些对象会持久存在,直到用户对他们所做的事情感到满意为止,并且他们会请求保存对象所代表的信息。

在对应用程序进行概要分析时,我发现会话启动大约占请求总时间的一半(对于请求总共约4秒)。由于并非所有存储对象都在用户的每个请求上使用,我尝试通过选择性地恢复请求所需的对象来提高应用程序的响应性。为此,我已将对象序列化为单个文件,并仅对所需的文件进行反序列化。此更改实际上炸毁了应用程序,因为序列化/反序列化消耗了大量内存(以及运行时间)。让我感到惊讶的是,会话处理程序可以在更短的时间内序列化和反序列化所有对象,并且比仅尝试子集的内存消耗更少。我相信这可能是由于将所有序列化对象数据加载到内存中,但我不确定。

以下是序列化和反序列化我使用过的对象的代码:

将序列化对象写入文件的代码:

public static function writeClose() {
    foreach (self::$activeRegistries as $registryName=>$registry) {
        if (isset($_SESSION["filemap"]) && isset($_SESSION["filemap"]["registries"]) && isset($_SESSION["filemap"]["registries"][$registryName])) {
            $path = $_SESSION["filemap"]["registries"][$registryName];
            if (file_put_contents($path, serialize($registry)) === false) {
                throw new repositoryException("Exception while writing the '$registryName' registry to storage");
            }
        } else {
            throw new repositoryException("Could not find the file path for the '$registryName' registry");
        }
    }
}

检索序列化对象的代码:

private static function getRegistry($registryName) {
    // First check to see if the registry is already active in this request
    if (isset(self::$activeRegistries[$registryName])) {
        $registry = self::$activeRegistries[$registryName];
    } else {
        // The registry is not active, so see if it is stored for the session
        if (isset($_SESSION["filemap"]) && isset($_SESSION["filemap"]) && isset($_SESSION["filemap"]["registries"][$registryName])) {
            $filePath = $_SESSION["filemap"]["registries"][$registryName];
            if (file_exists($filePath)) {
                $registry = unserialize(file_get_contents($filePath));
                self::$activeRegistries[$registryName] = $registry;
            } else {
                throw new repositoryException("Exception while getting serialized object for registry '$registryName'");
            }
        } else {
            // The registry is not saved in the session, so create a new one
            $registry = self::createRegistry($registryName);
            $filePath = "/tmp/" . session_id() . $registryName;
            $_SESSION["filemap"]["registries"][$registryName] = $filePath;
            self::$activeRegistries[$registryName] = $registry;
        }
    }
    return $registry;
}

如何使用php会话处理程序检索每个请求的所有集合来改进应用程序?

1 个答案:

答案 0 :(得分:0)

您可以通过更改会话的存储位置来加速现有的基于会话的实施。默认情况下,会话数据将写入服务器上的文件,然后通过浏览器cookie进行关联。如果您的会话包含大量数据,您所看到的时间可能是寻找物理驱动器的时间和读取时间。

但是,PHP支持几种会话存储方法。我建议尝试使用MemCached选项:http://php.net/manual/en/memcached.sessions.php

session.save_handler = memcached
session.save_path = "localhost:11211"

您当然需要安装MemCached。