定制 peterujah/cache 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

peterujah/cache

Composer 安装命令:

composer require peterujah/cache

包简介

Cache - a simple php caching.

README 文档

README

A simple php file cache. The Cache is designed to simplify the process of caching data in PHP applications. It provides various methods for configuration, data caching, retrieval, and cache management. It helps to reduce database queries, API calls, or expensive computations by storing the results in the cache.

Installation

Installation is super-easy via Composer:

composer require peterujah/cache

USAGES

Initialize DBController with configuration array

use Peterujah\NanoBlock\Cache;
$cache = new Cache("CACHE_NAME", __DIR__ . "/temp/caches/");

Query database and save response for later use

$cache->setExpire(7200);
$user = $cache->onExpired("LIST", function () use($connConfig, $user_id){
	$conn_handler = new Peterujah\NanoBlock\DBController($connConfig);
	$conn_handler->prepare('
	      SELECT * FROM user_table
	      WHERE user_id = :fund_user_id
	      LIMIT 1
	');
	$conn_handler->bind(':fund_user_id', $user_id);
	$conn_handler->execute();
	$user = $conn_handler->getOne();
	$conn_handler->free();
	return  array(
	    "user" => $user,
	    "time" => time(),
	    "morething" => "More"
	);
});

Sets the cache debugging mode, the default is false

$cache->setDebugMode(true|false);

Sets the cache file extension type default is JSON

$cache->setExtension(Cache::PHP | Cache::JSON | Cache::TEXT);

Enable the cache to store secure data available only with php file extension, the default is true.

$cache->enableSecureAccess(true | false);

统计信息

  • 总下载量: 44
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 1
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-12-21

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固