{
    "content": [
        {
            "type": "text",
            "text": "# Apache::Session::Flex (perldoc)\n\n## NAME\n\nApache::Session::Flex - Specify everything at runtime\n\n## SYNOPSIS\n\nuse Apache::Session::Flex;\ntie %hash, 'Apache::Session::Flex', $id, {\nStore     => 'DBFile',\nLock      => 'Null',\nGenerate  => 'MD5',\nSerialize => 'Storable'\n};\n# or\ntie %hash, 'Apache::Session::Flex', $id, {\nStore     => 'Postgres',\nLock      => 'Null',\nGenerate  => 'MD5',\nSerialize => 'Base64'\n};\n# you decide!\n\n## DESCRIPTION\n\nThis module is an implementation of Apache::Session. Unlike other implementations, it allows you\nto specify the backing store, locking scheme, ID generator, and data serializer at runtime. You\ndo this by passing arguments in the usual Apache::Session style (see SYNOPSIS). You may use any\nof the modules included in this distribution, or a module of your own making. If you wish to use\na module of your own making, you should make sure that it is available under the Apache::Session\npackage namespace.\n\n## Sections\n\n- **NAME**\n- **SYNOPSIS**\n- **DESCRIPTION**\n- **USAGE**\n- **AUTHOR**\n- **SEE ALSO**\n\nUse structuredContent.sections for detailed options, examples, and full documentation.\n"
        }
    ],
    "structuredContent": {
        "command": "Apache::Session::Flex",
        "section": "",
        "mode": "perldoc",
        "summary": "Apache::Session::Flex - Specify everything at runtime",
        "synopsis": "use Apache::Session::Flex;\ntie %hash, 'Apache::Session::Flex', $id, {\nStore     => 'DBFile',\nLock      => 'Null',\nGenerate  => 'MD5',\nSerialize => 'Storable'\n};\n# or\ntie %hash, 'Apache::Session::Flex', $id, {\nStore     => 'Postgres',\nLock      => 'Null',\nGenerate  => 'MD5',\nSerialize => 'Base64'\n};\n# you decide!",
        "tldr_summary": null,
        "tldr_examples": [],
        "tldr_source": null,
        "flags": [],
        "examples": [],
        "see_also": [],
        "section_outline": [
            {
                "name": "NAME",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "SYNOPSIS",
                "lines": 20,
                "subsections": []
            },
            {
                "name": "DESCRIPTION",
                "lines": 7,
                "subsections": []
            },
            {
                "name": "USAGE",
                "lines": 32,
                "subsections": []
            },
            {
                "name": "AUTHOR",
                "lines": 2,
                "subsections": []
            },
            {
                "name": "SEE ALSO",
                "lines": 3,
                "subsections": []
            }
        ],
        "sections": {
            "NAME": {
                "content": "Apache::Session::Flex - Specify everything at runtime\n",
                "subsections": []
            },
            "SYNOPSIS": {
                "content": "use Apache::Session::Flex;\n\ntie %hash, 'Apache::Session::Flex', $id, {\nStore     => 'DBFile',\nLock      => 'Null',\nGenerate  => 'MD5',\nSerialize => 'Storable'\n};\n\n# or\n\ntie %hash, 'Apache::Session::Flex', $id, {\nStore     => 'Postgres',\nLock      => 'Null',\nGenerate  => 'MD5',\nSerialize => 'Base64'\n};\n\n# you decide!\n",
                "subsections": []
            },
            "DESCRIPTION": {
                "content": "This module is an implementation of Apache::Session. Unlike other implementations, it allows you\nto specify the backing store, locking scheme, ID generator, and data serializer at runtime. You\ndo this by passing arguments in the usual Apache::Session style (see SYNOPSIS). You may use any\nof the modules included in this distribution, or a module of your own making. If you wish to use\na module of your own making, you should make sure that it is available under the Apache::Session\npackage namespace.\n",
                "subsections": []
            },
            "USAGE": {
                "content": "You pass the modules you want to use as arguments to the constructor. The\nApache::Session::Whatever part is appended for you: you should not supply it. For example, if\nyou wanted to use MySQL as the backing store, you should give the argument \"Store =\" 'MySQL'>,\nand not \"Store =\" 'Apache::Session::Store::MySQL'>. There are four modules that you need to\nspecify. Store is the backing store to use. Lock is the locking scheme. Generate is the ID\ngeneration module. Serialize is the data serialization module.\n\nThere are many modules included in this distribution. For each role, they are:\n\nStore:\nMySQL\nPostgres\nDBFile\nFile\n\nLock:\nNull\nMySQL\nSemaphore\n\nGenerate:\nMD5\n\nSerialize:\nStorable\nBase64\nUUEncode\n\nIn addition to the arguments needed by this module, you must provide whatever arguments are\nexpected by the backing store and lock manager that you are using. Please see the documentation\nfor those modules.\n",
                "subsections": []
            },
            "AUTHOR": {
                "content": "This module was written by Jeffrey William Baker <jwbaker@acm.org>.\n",
                "subsections": []
            },
            "SEE ALSO": {
                "content": "Apache::Session::File, Apache::Session::DBFile, Apache::Session::MySQL,\nApache::Session::Postgres, Apache::Session\n",
                "subsections": []
            }
        }
    }
}