Download the PHP package ceus-media/cache without Composer

On this page you can find all versions of the php package ceus-media/cache. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package cache

Ceus Media Cache

A caching library for PHP, implementing both PSR-6 and PSR-16.

PSR-6: Cache Interface PSR-16: Simple Cache

This library is a storage abstraction layer, which can be used as a cache client.

It provides CRUD access to several storage backends.

Branch Release PHP version PHPStan level Monthly downloads Package version License

About

This library is a storage abstraction layer, which can be used as a cache client.

It provides CRUD access to several storage backends.

Backends

You can use this layer to store and read information using these backends:

Installation

This library is available as composer package:

Of cource, you will need to use composer autoloader:

Usage

PSR-16 - Simple cache

Create cache

This would create a new folder cache in the current working directory, if allowed.

Write to cache

Within the folder there would be file aRandomDigit, holding a digit between 0 and 9.

Reading from cache

You can later read this information, again:

As you can see, the result is NULL, if the requested information is not cached (cache miss).

You can check if an information is cached:

PSR-6 - Cache Pool

As defined in PHP-Figs PSR-6 there is a cache pool with items.

Create cache

This would create a new folder cache in the current working directory, if allowed.

Write to cache

Within the folder there would be file datetime, holding a timestamp.

Reading from cache

You can later read this information, again:

History

Past

In the past, this library was called Ceus Media Modules: Storage Engine Abstraction, in short CMM_SEA.

We used it for caching, mostly.

During migration via different VCSs and due to corporate wide product renaming, it became CeusMedia/Cache on GitHub.

Since a migration to implement PHP-Figs cache releated PSRs, there are now two ways to use this library.

Slow storages have been removed to keep an eye on performance.

Ideas

Connector Factory

Replace the current resource strings, used on connecting a cache backend, by connector objects. For each backend there will be a connector class. A factory will ease the creation of these connectors.

Layered Caches

A cache client instance can have several backends, which are used in a defined order. This way, a slow cache backend (like a database or file based cache) can be wrapped by a faster cache backend (like a local memcache server). There are many interesting use cases.

Flattening Strategy

Since some cache backends cannot store structured data, a flattening strategy is needed. At the moment, each backend implements its own strategy. A better way is to select a stategy.

Cache Manager

Several cache client instances can be registered on a cache manager, which is a single resource for larger projects, like an application framework. During actions within the framework, the developer can select between several caches for different purposes.

More backends

Custom backends

Allow to register own cache backends.



All versions of cache with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
ceus-media/common Version ~1.0.0 | 1.0.x-dev
psr/simple-cache Version ^3.0
psr/cache Version ^3.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ceus-media/cache contains the following files

Loading the files please wait ....