Skip to content

Commit

Permalink
memory adapter added
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Balogh committed Oct 16, 2014
1 parent 62899bc commit 513a27b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions composer.json
Expand Up @@ -29,9 +29,10 @@
},
"minimum-stability": "stable",
"suggest": {
"adammbalogh/key-value-store-null": "For using Null storage",
"adammbalogh/key-value-store-memory": "For using Memory storage",
"adammbalogh/key-value-store-file": "For using File storage",
"adammbalogh/key-value-store-memcached": "For using Memcached storage",
"adammbalogh/key-value-store-redis": "For using Redis storage",
"adammbalogh/key-value-store-null": "For using Null storage"
"adammbalogh/key-value-store-redis": "For using Redis storage"
}
}
3 changes: 2 additions & 1 deletion readme.md
Expand Up @@ -22,6 +22,8 @@ This library provides an abstraction layer for key value stores. It is literally

* **Null**
* package: [key-value-store-null](https://github.com/adammbalogh/key-value-store-null)
* **Memory** (array)
* package: [key-value-store-memory](https://github.com/adammbalogh/key-value-store-memory)
* **File**
* package: [key-value-store-file](https://github.com/adammbalogh/key-value-store-file)
* **Memcached**
Expand All @@ -31,7 +33,6 @@ This library provides an abstraction layer for key value stores. It is literally

### Planned adapters

* Memory (array)
* Shared memory
* Memcache
* Apc
Expand Down

0 comments on commit 513a27b

Please sign in to comment.