Stack/Heap Memory
This post was migrated from Tistory. You can find the original here. Stack Memory This is the area where local variables and parameters related to function calls are stored. When a function is ...
This post was migrated from Tistory. You can find the original here. Stack Memory This is the area where local variables and parameters related to function calls are stored. When a function is ...
This post was migrated from Tistory. You can find the original here. TCP/UDP Socket Protocol The Socket Interface lets you use the TCP and UDP communication protocols. The Socket Interface is...
This post was migrated from Tistory. You can find the original here. Getting started Looking at messenger services today, there doesn’t seem to be much need for other tables to reference a Messa...
This post was migrated from Tistory. You can find the original here. Inner Join Extracts only the intersecting rows. (No NULLs.) Outer Join Left Outer Join Extracts based on...
This post was migrated from Tistory. You can find the original here. HTTP GET vs POST The answer to this question is mostly about “when to use which method” — that’s the main answer, and the di...
This post was migrated from Tistory. You can find the original here. Factory Method Instead of creating a Product object directly, a Factory class creates the Product for you. There are multi...
This post was migrated from Tistory. You can find the original here. Kafka producer key CompletableFuture<SendResult<Integer, String>> future = kafkaTemplate.send(MSG_TOPIC, key,...
This post was migrated from Tistory. You can find the original here. KRaft mode If you look into Kafka, you’ll find that it typically uses ZooKeeper to manage metadata, broker status, topic stat...
This post was migrated from Tistory. You can find the original here. @KafkaListener Annotation This is one of the many ways to implement a consumer. @KafkaListener(id = "foo", topics = MSG_...
This post was migrated from Tistory. You can find the original here. nginx.conf user nginx; worker_processes auto; error_log /var/log/nginx/error.log notice; pid /var/run/nginx.pid; ...