* @param bool $lock
* @return int
*/
public function put(string $path, $contents, $lock = false)
{
return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
}
/**
* Write the contents of a file, replacing it atomically if it already exists.
* @param string $path
//ini_set('error_log' , '/home/solomono/web/solomono.net/sites/dev/php.log');
error_reporting(E_ALL);
set_error_handler(function ($level, $message, $file = '', $line = 0) {
$this->handleError($level, $message, $file, $line);
});
set_exception_handler(function ($e) {
$this->handleException($e);
});
* @param bool $lock
* @return int
*/
public function put(string $path, $contents, $lock = false)
{
return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
}
/**
* Write the contents of a file, replacing it atomically if it already exists.
* @param string $path
}
$result = $this->files->put(
$path,
$this->expiration($seconds) . serialize($value),
true
);
if ($result !== false && $result > 0) {
$this->ensureFileHasCorrectPermissions($path);
//save list of keys to paths
if ($key !== 'ALL_KEYS' && empty($seconds)) {
$allKeys = $this->get('ALL_KEYS') ?: [];
if (!isset($allKeys[$key])) {
$allKeys[$key] = 1;
$this->put('ALL_KEYS', $allKeys, 0);
}
}
$result = $this->files->put(
$path,
* @param mixed $value
* @return bool
*/
public function forever($key, $value): bool
{
return $this->put($key, $value, 0);
}
/**
* Remove an item from the cache.
* @param string $key
* @param mixed $value
* @return bool
*/
public function forever($key, $value)
{
$result = $this->store->forever($this->itemKey($key), $value);
if ($result) {
event(new CacheWritten($key, $value));
}
if (is_array($key)) {
return $this->putMany($key, $value);
}
if ($ttl === null) {
return $this->forever($key, $value);
}
$seconds = $this->getSeconds($ttl);
if ($seconds <= 0) {
// given number of seconds so it's available for all subsequent requests.
if (!is_null($value)) {
return $value;
}
$this->put($key, $value = $callback(), $ttl);
return $value;
}
/**
public static function remember(string $key, \Closure $closure, $ttl = 60 * 5)
{
try {
return self::getRepository()
->remember(
$key,
$ttl,
$closure
);
} catch (\Exception $exception) {
Log::critical($exception->getMessage(), [
$listingProducts = tep_db_query($listing_sql)->fetch_all(MYSQLI_ASSOC) ?: [];
} else {
$listingProducts = FileCacheHelper::remember(
FileCacheHelper::PRODUCTS_KEY . '_' . md5($listing_sql),
fn() => tep_db_query($listing_sql)->fetch_all(MYSQLI_ASSOC) ?: [],
null
);
}
//salemaker: get salemaker prices only for products from current page (uses only one sql-query)
$salemakers_array = get_salemakers($listingProducts);
ErrorException
|
---|
ErrorException: file_put_contents(): Only -1 of 69 bytes written, possibly out of free disk space at /home/ltscreen/web/ltscreen.com/public_html/app/Classes/Filesystem/Filesystem.php:140 at Bootstrap\HandleExceptions->handleError() (/home/ltscreen/web/ltscreen.com/public_html/bootstrap/HandleExceptions.php:32) at Bootstrap\HandleExceptions->Bootstrap\{closure}() at file_put_contents() (/home/ltscreen/web/ltscreen.com/public_html/app/Classes/Filesystem/Filesystem.php:140) at App\Classes\Filesystem\Filesystem->put() (/home/ltscreen/web/ltscreen.com/public_html/app/Classes/Cache/Store/FileStore.php:71) at App\Classes\Cache\Store\FileStore->put() (/home/ltscreen/web/ltscreen.com/public_html/app/Classes/Cache/Store/FileStore.php:64) at App\Classes\Cache\Store\FileStore->put() (/home/ltscreen/web/ltscreen.com/public_html/app/Classes/Cache/Store/FileStore.php:138) at App\Classes\Cache\Store\FileStore->forever() (/home/ltscreen/web/ltscreen.com/public_html/app/Classes/Cache/Repository.php:301) at App\Classes\Cache\Repository->forever() (/home/ltscreen/web/ltscreen.com/public_html/app/Classes/Cache/Repository.php:160) at App\Classes\Cache\Repository->put() (/home/ltscreen/web/ltscreen.com/public_html/app/Classes/Cache/Repository.php:328) at App\Classes\Cache\Repository->remember() (/home/ltscreen/web/ltscreen.com/public_html/app/Classes/Cache/Helpers/FileCacheHelper.php:282) at App\Classes\Cache\Helpers\FileCacheHelper::remember() (/home/ltscreen/web/ltscreen.com/public_html/index.php:355) |