Like almost anyone who's been programming for a while, I'm familiar with the term "production code" and have a vague sense of what it means. However, can someone offer a semi-rigorous definition, since it seems Wikipedia and Google can't? It seems like there are a lot of gray areas in what counts as production, such as internal tools that are used by a small group of people and therefore not "formalized" in terms of UI, documentation, etc. and open source apps that are feature complete, reasonably bug free and working, but lack polish, UI and extensive testing.
|
1
|
|
|
|
|
|
Production means anything that you need to work reliably, and consistently. Whether is a build script, or a public facing web server. When others rely on your code, particularly folks who may not understand it (i.e. even "smart" developers but perhaps not in your group, but using a library you wrote), that code is production code. It's production because "work stops" and "money is lost" when the production code fails. |
||
|
|
|
|
In simple words "Production code which is live and in use by its intended audience" |
||
|
|
|
|
The term "production code" mixes two different concepts. One is deployment management and the other is release life cycle. In the strict sense of the word, a system is in production when it is being used as part of business or service operation. What's not in production are development, testing, QA, demo, and staging system. Production system does not immediately imply quality. From release life cycle's point of view, a "production" build is the build that is released to general public or clients. It is the stage after pre-alpha, alpha, beta, (feature complete, code complete, etc.) and release candidate. For shrink-wrap products that cannot easily deploy updates, reaching the production stage likely implies series of testing and bug fixes.
|
||
|
|
|
EDIT: The short answer: If you are "betting the farm on it", it is "production". This is a great question--an absolutely critical distinction that routinely gets everyone in trouble due to misunderstandings. The question of what is "production" is a subset of the related question of what is an "environment".
So now we must define "environment" (and then revisit "production"). We are still far from a satisfactory answer. We programmers use the term "environment" constantly to refer to computer systems consisting of hardware that is executing software. That software is the code that we wrote plus software that it depends upon, which was written by others. We write our code and integrate it with the other software, then we typically run the integrated software through an escalating series of tests (unit tests, integration tests, functional tests, acceptance tests, regression tests, etc.), until we finally run the integrated software in the full manner in which it was intended. Of course, not everything is fully automated. There are usually numerous people involved, and they have manual processes to perform. We programmers look for ways to automate as many of these processes as possible, but there is always a "man/machine boundary" in the systems we work on. Often, there are many such boundaries in any particular case. On the other hand, there may not be any significant automation at all. For example, we spoke of "production" way back when we had a room full of people performing manual labor which produced a product. So, there doesn't have to be any automation present in our "production" "environment". There is also a middle ground, where the automation involved does not include software, such as in the case of a person running a loom to weave cloth. Also, there may not be a product, since we have adapted our language of "production" "environment" to include product-less service providers. Likewise, the testing may not involve software, since we may be testing a non-software-driven machine (e.g., the loom) or even the people (training and evaluation). Now we have touched on all the crucial elements of an "environment":
Now we can properly and fully define our original terms.
Furthermore...
Now we can go a bit further.
Armed with these distinctions and definitions, we can now understand several common scenarios. An An An An In most cases, a single Normally, a single instance of an Therefore, the Finally, note that the situation can get quite complex. For example, a desktop computer ( EDIT: Production quality A solid verification ( However, if your organization merely produces that package (its I said it could get quite complex... |
|||
|
|
|
|
Any code that will be used by it's intended userbase would fit into my definition of 'production code'. Of course, the grey area in that definition would be clearly defining who your userbase is. G-Man |
||
|
|
|
|
When your code runs on a production system, that means it is being used by the intended audience in a real-world situation. Production code, however, does not necessarily mean robust, reliable, or stable code. The Daily WTF provides plenty of evidence in this regard. |
||||||
|
|
|
The definition as I understand it is that production code is any code that is installed or in use on a live, non-test-bed system. A server used internally to a company is a production system if it is the live system used by the employees of the company. The point here is that code running on a server internal to the company writing the code can be production code. Usually, a good distinction when looking at internal code is whether or not the group maintaining the code is separate from the group using the code. If the groups are separate, odds are that the code is production code. If running the business depends on the code, then it is certainly production code, even if it is developed and maintained in-house. |
||||||
|
