<?xml version="1.0" encoding="utf-8"?>

			<rss version="2.0">
			<channel>
			<title>CacheBox Blog - Announcements</title>
			<link>http://cachebox.riaforge.org/blog/index.cfm</link>
			<description>CacheBox Blog</description>
			<language>en-us</language>
			<pubDate>Sat, 25 May 2013 12:40:50 -0700</pubDate>
			<lastBuildDate>Fri, 06 Nov 2009 20:38:00 -0700</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>sam@autlabs.com</managingEditor>
			<webMaster>sam@autlabs.com</webMaster>
			
			
			
			
			
			<item>
				<title>CallBacks / Reap Listener</title>
				<link>http://cachebox.riaforge.org/blog/index.cfm/2009/11/6/callbacks</link>
				<description>
				
				I&apos;ve just uploaded a new build of the CacheBox core framework including a new version of the cacheboxagent.cfc and modifications to the service. These changes add support for a callback to your application when content is deleted or reaped from the cache, which Mark Mandel needed to integrate it with Transfer. This adds a new &quot;ReapListener&quot; init argument to the cacheboxagent.cfc following the &quot;evict&quot; argument, which accepts a CFC object. This object must have a single &quot;ReapCache&quot; method like this: 

&lt;code&gt;&lt;cfcomponent displayname=&quot;ReapListener&quot; output=&quot;false&quot;&gt;
	
	&lt;cffunction name=&quot;init&quot; access=&quot;public&quot; output=&quot;false&quot;&gt;
		&lt;cfreturn this /&gt;
	&lt;/cffunction&gt;
	
	&lt;cffunction name=&quot;ReapCache&quot; access=&quot;public&quot; output=&quot;false&quot;&gt;
		&lt;cfargument name=&quot;cachename&quot; type=&quot;string&quot; required=&quot;true&quot; /&gt;
		&lt;cfargument name=&quot;content&quot; type=&quot;any&quot; required=&quot;true&quot; /&gt;
		&lt;!--- execute clean-up code here ---&gt;
	&lt;/cffunction&gt;
	
&lt;/cfcomponent&gt;&lt;/code&gt;
				
				</description>
				
				
				<category>Announcements</category>
				
				<pubDate>Fri, 06 Nov 2009 20:38:00 -0700</pubDate>
				<guid>http://cachebox.riaforge.org/blog/index.cfm/2009/11/6/callbacks</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>CF on Wheels Plugin</title>
				<link>http://cachebox.riaforge.org/blog/index.cfm/2009/11/1/CF-on-Wheels-Plugin</link>
				<description>
				
				Mike Henke has taken the original CF on Wheels sample code that I created and turned it into a plugin for Wheels. Thanks, Mike! You can read more about it on the CF on Wheels discussion group &lt;a href=&quot;http://groups.google.com/group/cfwheels/browse_thread/thread/55254616098edea3&quot;&gt;here&lt;/a&gt;.
				
				</description>
				
				
				<category>Buzz</category>
				
				<category>Code Samples</category>
				
				<category>Announcements</category>
				
				<pubDate>Sun, 01 Nov 2009 00:13:00 -0700</pubDate>
				<guid>http://cachebox.riaforge.org/blog/index.cfm/2009/11/1/CF-on-Wheels-Plugin</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Google Group</title>
				<link>http://cachebox.riaforge.org/blog/index.cfm/2009/9/24/Google-Group</link>
				<description>
				
				I already had a couple of google groups for the other two projects I maintain when Mike Henke asked me about a group for CacheBox, so I figured I should probably create one. :) 

&lt;a href=&quot;http://groups.google.com/group/cfcachebox&quot;&gt;http://groups.google.com/group/cfcachebox&lt;/a&gt;
				
				</description>
				
				
				<category>Announcements</category>
				
				<pubDate>Thu, 24 Sep 2009 20:10:00 -0700</pubDate>
				<guid>http://cachebox.riaforge.org/blog/index.cfm/2009/9/24/Google-Group</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Released Version 0.9.8 with Fix for Cluster Agents</title>
				<link>http://cachebox.riaforge.org/blog/index.cfm/2009/9/22/Released-Version-098-with-Fix-for-Cluster-Agents</link>
				<description>
				
				Since the beginning with CacheBox, I&apos;ve always had this idea that the service should be able to adjust itself to accommodate whatever resources are available, independent of the requests from the agents. So if an agent requests placement in the Cluster context and there isn&apos;t any cluster storage available, the service should automatically downgrade to the next available context, specifically the server context. 

I just realized today while testing integration with DataFaucet that this wasn&apos;t actually working, so I had to fix that and it also required a modification to the CacheBoxAgent.cfc. So the service is now up to version 0.9.8 and the Agent is up to version 1.3. If you have an agent in your distribution, you should update it. 

So now if you have an agent that requests the cluster context and there isn&apos;t any cluster storage then when you view the agent list, that agent will appear in the server context instead. The detail for the agent however will show two lines - context and requested context, indicating that the agent has been automatically downgraded to another context. If it hasn&apos;t been downgraded, then it won&apos;t show the &quot;requested context&quot; line in the detail.
				
				</description>
				
				
				<category>Announcements</category>
				
				<pubDate>Tue, 22 Sep 2009 19:56:00 -0700</pubDate>
				<guid>http://cachebox.riaforge.org/blog/index.cfm/2009/9/22/Released-Version-098-with-Fix-for-Cluster-Agents</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>0.9.7 BETA Released</title>
				<link>http://cachebox.riaforge.org/blog/index.cfm/2009/9/21/097-BETA-Released</link>
				<description>
				
				Not too much going on in this release. A few bug fixes -- timehit wasn&apos;t being updated in the cache metadata, so I fixed that. And if you had restarted the server or the CF service and then refreshed a page with the detail for an agent before the agent registered, you&apos;d get a CF error, so I added a friendly error message in the management application that explains what&apos;s going on there. 

I also added a plugin installer for the onTap framework -- I just finished up the initial 3.3 release of the onTap framework that makes use of CacheBox for several aspects of caching that had already been built-in to the framework. What&apos;s interesting about the plugin installer is that it doesn&apos;t actually do anything in the onTap framework itself, it just downloads the latest version of CacheBox. The reason why it doesn&apos;t do anything in the &lt;a href=&quot;http://ontap.riaforge.org&quot;&gt;onTap framework&lt;/a&gt; is because this latest version of the framework already includes the CacheBoxAgent.cfc, which makes it independent of the CacheBox service. So you can run the onTap framework still with or without CacheBox, you just don&apos;t get any of the expiration policies, cluster syncing or other fancy features. I did run into a couple issues with the installer though and had to upload the CacheBox.zip and the plugin zip archive a couple times to get it to work right. And it&apos;s on the plugin webservice now, so once you&apos;ve downloaded the onTap framework you can install CacheBox automatically from within the plugin manager without needing to download it separately. 

My next task is updating the caching features in &lt;a href=&quot;http://www.datafaucet.com&quot;&gt;DataFaucet&lt;/a&gt;. :)
				
				</description>
				
				
				<category>Announcements</category>
				
				<pubDate>Mon, 21 Sep 2009 12:36:00 -0700</pubDate>
				<guid>http://cachebox.riaforge.org/blog/index.cfm/2009/9/21/097-BETA-Released</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>New Samples including ColdBox in 0.9.6 BETA Released</title>
				<link>http://cachebox.riaforge.org/blog/index.cfm/2009/9/18/coldbox</link>
				<description>
				
				I fixed a few bugs in this next release. I&apos;ve also finally got a ColdBox sample in there, and a stand-alone blog sample. The ColdBox sample has been partially tested. (I haven&apos;t tested the Mach-II sample or the DataMgr sample yet.)

I also managed to simplify the custom eviction policies quite a bit thanks to the addition of an expire() method in the agent CFC that allows you to flag content as no longer valid without immediately deleting it. If you&apos;ve got a lot of content in cache, using expire() instead of delete() may result in faster page load times for your users, in exchange for allowing the content to hang-out in memory a bit longer until the next reap-cycle (which by default happens once per minute). Expired content won&apos;t be returned from a fetch operation, so it&apos;s otherwise functionally the same as deleting the content.
				
				</description>
				
				
				<category>Announcements</category>
				
				<pubDate>Fri, 18 Sep 2009 05:55:00 -0700</pubDate>
				<guid>http://cachebox.riaforge.org/blog/index.cfm/2009/9/18/coldbox</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>New Password and Login Version 0.9.5 BETA Release</title>
				<link>http://cachebox.riaforge.org/blog/index.cfm/2009/9/16/LOGIN</link>
				<description>
				
				So the frustration yesterday was with the fact that the security would be a challenge for folks setting up clusters and configuring them to auto-sync storage types and agents. So today I recoded the security and added a password and a login form much like the ColdFusion Administrator. I updated the documentation -- the installation instructions are actually simpler now. :) And I uploaded version 0.9.5 with the changes.
				
				</description>
				
				
				<category>Announcements</category>
				
				<pubDate>Wed, 16 Sep 2009 18:53:00 -0700</pubDate>
				<guid>http://cachebox.riaforge.org/blog/index.cfm/2009/9/16/LOGIN</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Cluster Synchronization in Version 0.9.4 BETA Released</title>
				<link>http://cachebox.riaforge.org/blog/index.cfm/2009/9/16/CLUSTERSYNC</link>
				<description>
				
				I&apos;ve uploaded another point release (0.9.4 BETA), with a new Cluster tab that allows you to configure your servers in a cluster to auto-sync. What this means is that when you configure a storage type that supports the cluster context or when you configure a cluster agent, all the servers in your cluster will be updated with the new configuration automatically from the management application. For those of you with several servers in your cluster, this should really help keep your maintenance down to a minimum. 

I will say though that I&apos;m not entirely sure what to do about the links to alternate servers. Right now the links show up in the cluster tab, but don&apos;t work by default because the management application only works on the localhost for security reasons. Which means if you want the links in the cluster tab to work, you have to create a config.cfc and edit the applyRequestSecurity() method to tell it what IP addresses are safe. I suppose there won&apos;t be a huge number of people who run into this issue, since it only applies to people with clusters, but it&apos;s still not as easy to install the cluster as I&apos;d like. Maybe I&apos;ll have some better ideas later on. 

In the meantime I hope everyone&apos;s enjoying the new tools. :)
				
				</description>
				
				
				<category>Announcements</category>
				
				<pubDate>Wed, 16 Sep 2009 04:11:00 -0700</pubDate>
				<guid>http://cachebox.riaforge.org/blog/index.cfm/2009/9/16/CLUSTERSYNC</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>50 Downloads in the First Week!</title>
				<link>http://cachebox.riaforge.org/blog/index.cfm/2009/9/15/MadPopular</link>
				<description>
				
				I just uploaded version 0.9.3. I&apos;ve managed to add samples of CacheBox integration for the &lt;a href=&quot;http://www.mach-ii.com&quot;&gt;Mach-II framework&lt;/a&gt; and for Steve Bryant&apos;s &lt;a href=&quot;http://datamgr.riaforge.org&quot;&gt;DataMgr&lt;/a&gt; tool (a data access layer). I haven&apos;t tested either of these yet. I&apos;ve also updated the documentation again and added some information about using CacheBox for singleton storage and for managing sessions with it. It&apos;s not exactly what I had hoped for in terms of samples, but it&apos;ll do. :) I&apos;d still like to get a simple blog or something in there if anybody knows of a small one that caches its content. I haven&apos;t found one yet, they&apos;re all at least 1MB download and I don&apos;t want to add something as a sample that&apos;s larger than the CacheBox. Anyway there&apos;s a new download on the project &lt;a href=&quot;http://cachebox.riafoge.org&quot;&gt;home page&lt;/a&gt;. 

There&apos;ve been about 50 downloads so far in just the first week. I&apos;m still looking forward to hearing what everyone thinks! :) I know Matt Gersting integrated it into &lt;a href=&quot;http://fusecache.riaforge.org/&quot;&gt;FuseCache&lt;/a&gt; for Fusebox applications, and said that he likes the management application so much he&apos;s probably going to use CacheBox for most of his caching. So that&apos;s one in the win column. ;) Where does everyone else stand? Am I doing a good job with the documentation? Is it working for you? Have you found any bugs? Is it just so good that everyone is speechless? :)
				
				</description>
				
				
				<category>Buzz</category>
				
				<category>Announcements</category>
				
				<pubDate>Tue, 15 Sep 2009 02:00:00 -0700</pubDate>
				<guid>http://cachebox.riaforge.org/blog/index.cfm/2009/9/15/MadPopular</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Version 0.9.2 BETA released w/ Fix for duplicated miss-counters</title>
				<link>http://cachebox.riaforge.org/blog/index.cfm/2009/9/13/Version-092-BETA-released-w-Fix-for-duplicated-misscounters</link>
				<description>
				
				I was finally able to make a few minutes to sit down and seriously investigate the duplicated miss-counters bug mentioned in the release notes of the last 2 point versions. It turned out to be pretty easy to find and fix once I had the time to sit down and test it. 

This is getting pretty close to a release candidate. Mostly before I declare it an RC, I&apos;d like to include a sample application in the distribution. 

I was hoping to use BlogCFC as a sample application, but it&apos;s gotten a lot bigger since the last time I installed it and I&apos;m not wanting to include something that large. It&apos;s well more than twice the size of the whole CacheBox distribution as is right now. If you&apos;ve got an older copy of BlogCFC, or if you know of another smaller open source project that caches content, send me an &lt;a href=&quot;mailto:info@autlabs.com&quot;&gt;email&lt;/a&gt;. Thanks!
				
				</description>
				
				
				<category>Announcements</category>
				
				<pubDate>Sun, 13 Sep 2009 18:22:00 -0700</pubDate>
				<guid>http://cachebox.riaforge.org/blog/index.cfm/2009/9/13/Version-092-BETA-released-w-Fix-for-duplicated-misscounters</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Version 0.9.1 w/ Memcached Support Released</title>
				<link>http://cachebox.riaforge.org/blog/index.cfm/2009/9/12/memcached</link>
				<description>
				
				I just incremented the version number to 0.9.1 because I got the memcached storage type coded and tested. Support for memcached requires installation of the &lt;a href=&quot;http://cfmemcached.riaforge.org&quot;&gt;cfmemcached&lt;/a&gt; project as well. Cool thing about that is it&apos;s just a matter of unzipping cfmemcached into your web root and then it&apos;s basically ready. You may also have to configure the storage type in the CacheBox Management App to provide the IP addresses of your memcached servers if you&apos;re running several distributed servers. I also managed to get the storage type to test to make sure a memcached server connection is available, so if you put in bad IP addresses, it will tell you that the storage type is still not ready. So if it says memcached is ready, it&apos;s really ready. :) 

I also did a little more work on the documentation, added some information about supported engines, a namespace primer and a bit of clarification about contexts.
				
				</description>
				
				
				<category>Announcements</category>
				
				<pubDate>Sat, 12 Sep 2009 00:06:00 -0700</pubDate>
				<guid>http://cachebox.riaforge.org/blog/index.cfm/2009/9/12/memcached</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Version 0.9 BETA</title>
				<link>http://cachebox.riaforge.org/blog/index.cfm/2009/9/9/Version-09-BETA</link>
				<description>
				
				I just uploaded a zip archive of version 0.9 BETA for CacheBox to the server. As the version number indicates, this is almost ready to be a completed release. There are a handful of issues I&apos;m still working on (and would really appreciate your help with). There is however a reasonably thorough documentation PDF. Here are my release notes about the issues that need to be addressed: 

&lt;pre style=&quot;font-size:10pt;&quot;&gt;CacheBox version 0.9 BETA 
Release Notes 

- Getting duplicates of miss-counters in the cache query 
	-- need to find the source of this bug 
	-- not cosmetic, despite the fact that the service works 
- Optimization starts when a memory failure is predicted 3-hours out 
	-- warning message appears when predicted memory failure drops below 2 hours 
	-- warning message seems pretty frequent, considering reducing the timeline 
- Optimization method in defaultconfig.cfc is incomplete 
	-- I&apos;m sort of guessing at this point about how best to optimize the cache 
	-- The data is there, but I want better algorithms for applying it 
- Memcached storage type is incomplete 
	-- needs configuration and code to make it work 
- Not tested on Railo, so no knowing if the Cluster storage type works 
- Considering additional storage types 
	-- ehCache? 
	-- MS Velocity? &lt;/pre&gt;

And a screen shot!
&lt;a href=&quot;http://cachebox.riaforge.org/blog/images/603/management_application.png&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cachebox.riaforge.org/blog/images/603/management_application.png&quot; style=&quot;width:650px;&quot;&gt;&lt;/a&gt;
				
				</description>
				
				
				<category>Announcements</category>
				
				<pubDate>Wed, 09 Sep 2009 03:06:00 -0700</pubDate>
				<guid>http://cachebox.riaforge.org/blog/index.cfm/2009/9/9/Version-09-BETA</guid>
				
			</item>
			
		 	
			</channel></rss>