Download the PHP package kash/kash without Composer

On this page you can find all versions of the php package kash/kash. 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 kash

Kash/Kash Travis Packagist Pre Release Packagist

Code Climate Code Climate

Kash is a general purpose caching library that is used to cache various values using a variety of different drivers to accomplish this.

Features

Installation

Composer (Preferred)

This assumes you have composer installed. Once you do that please run

Usage

Configure Kash as a Service with Symfony2

Edit your services.xml file.

This will set up Kash and use Monolog as the logger or whatever you have setup as the logging service. You can change the driver class to whatever driver you want.

When you need to use the caching service, simple grab it out of the container.

Core Concepts

Items

Items are the smallest unit that can be cached. This would include the results from an API call or possible just a simple value. Items are what you will use to cache data and check expiration times.

Pools

Items go into and come out of a pool. The pool uses Drivers to talk with various Backends.

Drivers

Drivers are used to communicate with cache Backends such as a filesytem, database, etc. The only know of the Backend they need to communicate with and that they are given CacheItem's to find and persist.

Backends

Backends are anything that is used to store cached items. These include things such as a filesystem up to Redis and everything in between.

Drivers

NullDriver

The NullDriver does not cache any data.

ArrayDriver

This driver caches data in an array. It does not persist data, but you are able to set values and expire items.

Usage

FilesystemDriver

Caches data to a filesystem.

Creating Your Own Driver

All drivers MUST implement the DriverInterface. The documentation for what is expected is documented in this file. Once you have your driver class created you will just inject it into the CachePool when you create it. Easy! For some examples please look at some of the included drivers code.

API Documentation

API docs are generated using phpDocumentor. To generate documentation for this project, please run:

Testing

PHPUnit is used as the testing framework. If you want to run tests, just run phpunit.

Change Log

See CHANGELOG.md

Contributing Guidelines

See CONTRIBUTING.md

License Packagist

Copyright (c) 2015 Joshua Estes

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


All versions of kash with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4
psr/log Version ~1.0.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 kash/kash contains the following files

Loading the files please wait ....