Processing a considerable number of large XML files may require a lot of memory and processing power. With Rust, we can create applications that process huge XML files with a relatively small memory footprint yet are still performant. This post
Write XML Tags using Closure in Rust – No Element End Tags
Did you miss writing out an XML element end tag in your Rust codes? There is a convenient way to avoid this in Rust using Closure.
Insertion Sort Recursion and Iteration in Rust
This post is about a sorting algorithm called Insertion Sort with recursive and iterative implementations in Rust.
Static and Instance Methods in Struct in Rust
A struct can have its own static and instance methods (or functions) but are not created within the struct itself. These methods exist in a separate block using impl and they can be either static or instance methods.
Rust – Thread Synchronization using Barrier
This post is about Rust thread synchronization with Barrier using std::sync::Barrier which is part of Rust’s standard library. Therefore, we do not need external dependencies to make things work. Basic Idea of Barrier The basic idea of using barriers is
Create Threads That Work With Data in Rust
Rust supports the creation of threads to run code simultaneously using the spawn function and a closure argument.
Rust – Fibonacci using Recursion and Iteration
This post is about simple Fibonacci implementations in Rust using recursion and iteration. It also shows which one is faster than the other using differences of start and end times.
Secure Actix-Web Application With TLS
This post demonstrates how to secure a Actix-web web application in Rust.
Rust Environment Variables – Set, Update, List And Delete
In Rust, we could get, list, or update environment variables using functions provided in the std::env module.
docker-compose.yml For KeyCloak – Local Development
This post provides a another basic docker-compose.yml .This time is to create a Keycloak container with initial user account.