承接 m1n64/lru-cache 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

m1n64/lru-cache

最新稳定版本:1.1.0

Composer 安装命令:

composer require m1n64/lru-cache

包简介

README 文档

README

Description

LRUCache is an implementation of a cache based on the Least Recently Used (LRU) algorithm, which automatically removes the least recently used items when the specified capacity limit is reached. This class is useful for optimizing performance by retaining only the most relevant data.

Installation

Make sure you have PHP version 8.1 or higher installed. You can install this package via Composer:

composer require m1n64/lru-cache

Usage

Example

<?php

require 'vendor/autoload.php';

use Vasqo\LRU\LRUCache;

$cache = new LRUCache(3); // Create a cache with a capacity of 3 items

$cache->put('a', 1);
$cache->put('b', 2);
$cache->put('c', 3);

// Get an item
echo $cache->get('a'); // 1

$cache->put('d', 4); // 'b' will be removed as it is the least used

// Get all items
print_r($cache->all()); // ['a' => 1, 'c' => 3, 'd' => 4]

// Remove an item
$cache->remove('a');
print_r($cache->all()); // ['c' => 3, 'd' => 4]

Tests

To run the tests, run the following command:

composer test

Methods

  • __construct(int $capacity): Creates a new instance of the cache with the specified capacity.
  • all(): array: Returns all items in the cache.
  • get(string|int $key): mixed: Retrieves an item by key. If the item is found, it is moved to the front of the cache.
  • put(string|int $key, mixed $value): void: Adds an item to the cache or updates an existing one. If the cache is full, the least recently used item will be removed.
  • remove(string|int $key): void: Removes an item by key.
  • count(): int: Returns the number of items in the cache.
  • capacity(): int: Returns the maximum capacity of the cache.

License

This project is licensed under the MIT License. See the LICENSE file for more information.

Author

  • m1n64

Feel free to modify any part of it as needed!

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-10-28