blog.tedivm.com
Rants | tedious ramblings
http://blog.tedivm.com/category/rants
Robert Hafner tedious ramblings. Browsing posts in: Rants. Oct 22, 2014. A Walkthrough of PSR-6: Caching. There’s been a lot of discussion about PSR-6, the php-fig caching interfaces, so I thought it was time to step in and describe what this system is all about. Be prepared to read far more about caching interfaces than you probably thought possible. Feb 20, 2014. Upcoming Github Enterprise Vulnerability Disclosure. If anyone knows anyone at Github who might actually take this seriously please feel free...
blog.tedivm.com
Puppet PSAD v1.1.2 Released | tedious ramblings
http://blog.tedivm.com/projects/2015/01/puppet-psad-v1-1-2-released
Robert Hafner tedious ramblings. Jan 7, 2015. Puppet PSAD v1.1.2 Released. The PSAD Puppet Module. Has been updated. The major addition includes some better handling of the PSAD service checks, which should result in a faster check of the PSAD service and remove some potential warnings on versions of Ubuntu. Additionally some documentation and formatting updates have been made. Special thanks to netson. Click to share on Twitter (Opens in new window). Click to share on Reddit (Opens in new window).
stashphp.com
Groupings — Stash 0.14.0 documentation
http://www.stashphp.com/Grouping.html
Stash 0.14.0 documentation. Larr; Basic Usage. Grouping is an extremely important feature of caching. By making it easier for developers to clear out related items and for framework and application developers to isolate data among components, caching will become more common place and application performance will improve as a result. Namespaces are controlled by the Pool: setNamespace($name) function. Once a namespace is set all operations the Pool and it's subsequent children Items do will in that is...
stashphp.com
StashBundle — Stash 0.14.0 documentation
http://www.stashphp.com/Symfony.html
Stash 0.14.0 documentation. Integrates the Stash caching library. Into Symfony, providing a powerful abstraction for a range of caching engines. This bundle provides a caching service, adds Stash information to the Web Profiler toolbar, and adds integration for the Doctrine Common Cache library. Both the bundle and Stash are licensed under the New BSD License. Please fork us on Github. Add the bundle using composer, either by requiring it on the command line:. Or by adding it directly to your. By default...
stashphp.com
Integration — Stash 0.14.0 documentation
http://www.stashphp.com/Integration.html
Stash 0.14.0 documentation. Integrating Stash into a project consists of three components- Initializing the Drivers and Pool, making the subsequent Pool available for consumption, and actually utilizing Stash to cache data. This page has general pointers that everyone should consider when working with Stash. Interfaces are all in the Stash Interfaces namespace and consist of-. The Stash DriverList class contains static functions that ease integration. Registers new Drivers with the class. All Drivers hav...
stashphp.com
Core API — Stash 0.14.0 documentation
http://www.stashphp.com/API.html
Stash 0.14.0 documentation. The Pool class represents the entire caching system and all of the items in it. Objects of this class are used to retrieve Items from the cache, as well as to perform bulk operations on the system such as Purging or Clearing the cache. The clear function completely empties all items associated with the Pool. After calling this every Item will be considered a miss and will have to be regenerated. Construct(DriverInterface $driver = null). The Purge function allows drivers to pe...
stashphp.com
Adding Drivers — Stash 0.14.0 documentation
http://www.stashphp.com/AddingDrivers.html
Stash 0.14.0 documentation. Although Stash comes with a variety of built in Drivers there are plenty more that can be built. New Drivers are always appreciated, so please feel free to issue a pull request to get it included in the core library. Stash asks for keys to be provided as strings, but it normalizes those keys into an array before passing it to the driver. For the purposes of driver development a key is always an indexed array. SetOptions(array $options = array(). Returns the previously stored d...
stashphp.com
Contributing — Stash 0.14.0 documentation
http://www.stashphp.com/Contributing.html
Stash 0.14.0 documentation. Larr; Adding Drivers. Running the test suite. Pull Requests and Community Contributions are the bread and butter of open source software. Every contribution- from bug reports to feature requests, typos to full new features- are greatly appreciated. One Item Per Pull Request or Issue. This makes it much easier to review code and merge it back in, and prevents issues with one request from blocking another. Make sure to update the CHANGELOG.md file with your changes. First instal...
blog.tedivm.com
Open Source | tedious ramblings
http://blog.tedivm.com/category/open-source
Robert Hafner tedious ramblings. Browsing posts in: Open Source. Mar 3, 2014. Building an Email Testing Environment with Vagrant, Dovecot and Travis-CI. In my previous post. I introduced the testing suite I created for Fetch. Here I want to go through exactly what needed to be done to put that together. This post is a bit longer, and you really don’t need it to take advantage of this package, but it may provide some insight to anyone hoping to do something like this themselves. Mar 3, 2014. Using this is...