Skip to content

Releases: dude920228/php-cache

Bug fixes

05 Nov 10:53
017b8fd
Compare
Choose a tag to compare
Merge pull request #13 from dude920228/analysis-z39461

Apply fixes from StyleCI

Minor patch

05 Nov 09:47
Compare
Choose a tag to compare
v1.1.1

Deleted auto generated comments from files

Almost complete version

30 Oct 15:50
Compare
Choose a tag to compare
Pre-release

The lib is able to use unix socket files as communication endpoint, so firewalls will not be an issue.

Minor code changes, for better code quality

18 Sep 09:03
077c481
Compare
Choose a tag to compare

This release DOES NOT contain new features, nor breaking changes.

This is a patch release only, not affecting the functionality!

v1.0 Release, contains breaking changes

12 Sep 08:49
03c598c
Compare
Choose a tag to compare

This release contains probable breaking changes!

  • Removed getKeys functionality and keys command
  • Removed php-cache.phar from the repository, added pharBuilder.php for manual build

Minor changes

21 Aug 08:37
Compare
Choose a tag to compare
  • Cleaned some junk in the code
  • Removed file extension of the CLI file

Added Symfony console commands

20 Jul 12:30
Compare
Choose a tag to compare

Added symfony console commands:

get [<key>]: Gets the entry for the specified key or all entries with keys if no key is specified
delete <key>: Deletes the entry from the cache pool with the specified key
set <key> <value>: Adds a new entry to the cache pool or overwrites it if it exists
keys: Gets the currently existing keys in the cache

Example:

./phpCache.php set test test
./phpCache.php set test1 test1
./phpCache.php get

Will output:
+-------+-------+
| KEY   | VALUE |
+-------+-------+
| test  | test  |
| test1 | test1 |
+-------+-------+

./phpCache.php get test

Will output:
+------+-------+
| KEY  | VALUE |
+------+-------+
| test | test  |
+------+-------+

./phpCache.php keys

Will output:
+-------+
| KEYS  |
+-------+
| test  |
| test1 |
+-------+

Added get keys functionality

25 Jun 12:41
Compare
Choose a tag to compare

New feature:
CacheClient::getKeys()
Returns the currently stored keys in the cache pool.

Ready to use on Php >= 5.4

21 Jun 12:22
Compare
Choose a tag to compare

Fixed a small ammount of code to support php < 5.6 by replacing short array definition ([]) to array().