Sets a value for a given key with a time to live if it does not yet exist.
string $key: The key of the data to store.
mixed $value: The data to store.
int $expire: The time to live for items, in seconds.
bool TRUE if the data was set, or FALSE if it already existed.
function setWithExpireIfNotExists($key, $value, $expire);