This file contains most of the available XOAD * configuration options.

*

You can modify this file, but you should be aware * that XOAD is only tested with the default * configuration.

* * @author Stanimir Angeloff * * @package XOAD * * @version 0.6.0.0 * */ if ( ! defined('XOAD_SERIALIZER_SKIP_STRING')) { /** * Defines the prefix that is used to indicate the * Serializer to skip string serialization. * *

Example:

* * * * */ define('XOAD_SERIALIZER_SKIP_STRING', 'Every class that you will register with {@link XOAD_Client} * should implement this method to provide more information * about its methods and variables.

*

Example:

* * * * */ define('XOAD_CLIENT_METADATA_METHOD_NAME', 'xoadGetMeta'); } if ( ! defined('XOAD_EVENTS_STORAGE_DSN')) { /** * Defines the data source name and parameters to use * when event's information is saved. * *

DSN Examples:

* * File://c:\events.txt * MySQL://server=?;user=?;password=?;database=?;[port=?] * PearDB://type=?;server=?;user=?;password=?;database=?;[port=?] * * */ define('XOAD_EVENTS_STORAGE_DSN', 'File://'); } if ( ! defined('XOAD_EVENTS_LIFETIME')) { /** * Defines the default lifetime for an event. * *

The default value is 2 minutes. Please note, that * the lifetime should be between 30 seconds and 5 minutes * for performance reasons.

*/ define('XOAD_EVENTS_LIFETIME', 60 * 2); } ?>