Database
scalable.txt
Associated article: Developing Scalable Distributed Applications
Tags: Database Design
Published source code accompanying the article by Mario A. Torres in which he presents a generic model designed to serve as a blueprint for development of scalable distributed computing applications.
Developing Scalable Distributed Applications
by Mario A. Torres
Listing One
public interface IntfMgr
{
public String getHostOS() throws Exception;
public String getHostTime() throws Exception;
}
Listing Two
import java.util.Date;
public class LocalMgr implements IntfMgr
{
protected String strMgrType;
LocalMgr() { strMgrType = "...


