1) Introduction to Elasticsearch and the ELK stack
Table of Contents
- 1. Introduction to Elasticsearch
- 2. Understanding Elastic Stack
- 3. The Architecture of Elasticsearch
- 4. How Search Query Executed(Quick Overview)
- 5. End Notes
- 6. Recommended Articles
Source: Introduction to Elasticsearch and the ELK stack
2) How Much Memory Does a Java Thread Take?
It starts with:
A memory, which is taken by all Java threads, is a significant part of the total memory consumption of your application. There are a few techniques on how to limit the number of created threads, depending on whether your application is CPU-bound or IO-bound. If your application is rather IO-bound, you will very likely need to create a thread pool with a significant number of threads which can be bound to some IO operations (in blocked/waiting state, reading from DB, sending HTTP request).
Source: How Much Memory Does a Java Thread Take?
3) Redis vs MySQL Benchmarks
Table of Contents
- Introduction to Redis
- Prerequisites
- Installation of Redis over Ubuntu
- Workflow
- Source Code
- Benchmarks
- Recommended Articles
- References
Source: Redis vs MySQL Benchmarks
4) Evaluation of ML Algorithms for Intrusion Detection Systems
It starts with:
The last decade has seen rapid advancements in machine learning techniques enabling automation and predictions in scales never imagined before. This further prompts researchers and engineers to conceive new applications for these beautiful techniques. It wasn’t long before machine learning techniques were used in reinforcing network security systems.
Source: Evaluation of ML Algorithms for Intrusion Detection Systems
5) Asynchronous JavaScript
Table of Contents
- 1. Prerequisites
- 2. Overview
- 3. Callbacks in JavaScript
- 4. Hitting HTTP Requests in JavaScript
- 5. Callback Abstraction
- 6. Closures
- 7. Promises
- 8. References
- 9. Recommended Articles:
Source: Asynchronous JavaScript
Top comments (0)