Proxy
-
Mobx 6Framework/SPA 2020. 12. 1. 08:14
1. Overview Become compatible with standard modern JavaScript - Dropping Decorators Syntax Mobx will work out of the box in most setups version Proxy and non-proxy in the same version Reduce bundle size - By removing decorators Enable strict mode by default - all observables must be updated through actions 2. Decorators 2.1 makeObservable A function that receives a target, annotations, and optio..
-
HAProxyDevOps/MIddleware 2020. 5. 3. 01:41
1. Overview HAProxy is a reliable and high-performance load balancer that can operate on the TCP and HTTP networking layers it's a very popular free and open-source software load balancer that powers many distributed systems web applications and websites and is considered to be almost a standard for load balancers in the industry. It is actually very easy to set up but despite its simplicity and..
-
Forward proxy and Reserve proxyDevOps/Server 2019. 9. 5. 08:38
1. Overview Let's distribute forward and reverse proxy used in Nginx and Apache. 2. Forward Proxy Acts as an intermediary for requests from clients seeking resources from other servers. A client connects to the proxy server, requesting some services, such as files, connection, web page, or other resources available from a different server and the proxy server evaluates the request as a way to si..
-
Spring AOPFramework/SPRING 2019. 8. 23. 06:32
1. Overview AOP is a programming paradigm that aims to increase modularity by allowing the separation of cross-cutting concerns. It does so by adding additional behavior to existing code without modification of the code itself. 1.1 Code Tangling, Scattering, and Cross-Cutting Concerns Problems Without AOP or Modularization are Code Tangling and Code Scattering. 1.1.1 cross-cutting concern A cros..