Lightweight

はてはてligthweightとはと思って調べてみたところ...

f:id:whipmegrandma:20180203161026p:plain
気になったところ

Quoraより

A lightweight container is one which does not require additional external requirements like third party services, servers etc. Spring can be mostly used as is with very few external dependencies and is hence referred to as a lightweight container. EJB is considered heavy weight because it requires an application server for managing it. Another characteristic of lightweight container is that they are non-invasive which means application code is independent of the container. Even if later the container changes no changes in the code is required because we are not using any container specific APIs.

(プログラミング界隈において)ライトウェイトとは第三者サービス、サーバーといった外部的な付加的な必須条件を必要としないものを指す。スプリングがその少ない依存性から定評のあるライトウェイトとして代表的である。EJBはその管理にアプリケーションサーバーを必要とするのでヘビーウェイトとして称されている。その他のライトウェイトとの持つ特徴として独立性がある。アプリケーション内のコードは本体と独立しているため両者の変化の影響を受けないのである。