Difference between revisions of "On demand"

From Organic Design wiki
m (Production On Demand (POD))
(Production On Demand (POD): Affordable 3D metal printing available)
Line 12: Line 12:
 
*[http://www.cafepress.com/ CafePress] ''- on-demand printed merchandise and CD/DVD's''
 
*[http://www.cafepress.com/ CafePress] ''- on-demand printed merchandise and CD/DVD's''
 
*[http://finerworks.com/pricing.asp finerworks.com] and [http://www.canvasondemand.com/canvas-sizes.asp CanvasOnDemand] ''- printing/framing/mounting photos on canvas''
 
*[http://finerworks.com/pricing.asp finerworks.com] and [http://www.canvasondemand.com/canvas-sizes.asp CanvasOnDemand] ''- printing/framing/mounting photos on canvas''
 +
*[http://www.3dprinterworld.com/article/metal-printing-for-consumer-s1-from-aurora-labs Affordable 3D metal printing available]
  
 
== On Demand in Software Architecture ==
 
== On Demand in Software Architecture ==

Revision as of 12:01, 25 September 2014

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