var fDesc=new Array();
fDesc[0] = "Remove performance bottlenecks and scale your .NET applications with NCache Express, an in-memory distributed cache. NCache Express lets you cache both static and transactional application data close to your application and reduce those expensive database trips.
Main Features:
- Synchronizes cache across multiple servers
- Dynamic clustering & cache configuration for 100% uptime
- Cache reliability through data replication across servers
- InProc/OutProc cache for multiple processes on same machine
- API identical to ASP.NET Cache";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}