On demand

From Organic Design wiki
Revision as of 12:01, 25 September 2014 by Nad (talk | contribs) (Production On Demand (POD): Affordable 3D metal printing available)
Glossary.svg This page describes a concept which is part of our glossary
Cone.png This article or section is a stub. Stubs are articles that have not yet received substantial attention from the authors. They are short or insufficient pieces of information and require additions to further increase the article's usefulness. The project values stubs as useful first steps toward complete articles.

Printing On Demand

Production On Demand (POD)

On Demand in Software Architecture

This concept of production on demand also plays an important role in software architecture and programming environments. Complex applications like office suites and content management systems can have huge arrays of diverse components and modules. Applying the on-demand paradigm in this context simply means to only load those components into memory when their first required.

This issue is closely related to the programming environment as well, for example the so-called "stateless" paradigm which is the client-server/request-response system used on the web is not a very on-demand environment. This is because every request has to run its own instance of the server application. Although shared-object architectures can help with this, it would be supported from the ground up in a peer-to-peer architecture.

See also