|
by David L. Penton via The Penton-izer on 3/19/2009 1:23:43 PM
Microsoft has been working on a great venture: "Velocity". I have a great interest in that, since over the past couple of years I have been looking at ways to make cache be more effective for applications. I've started giving talks and demonstrations with Microsoft Velocity. Here are some basics (from a console app perspective):
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.Caching;
namespace Velocity1 {
 
... [ read more ]
|