RSSAmplifier

Blog

Data With Rust

Better data using Rust

datawithrust.comRSS feed ↗11 posts

Latest posts

Setting up a Rust developer environment

To install Rust, the current widely accepted method is to use an installer called rustup . When you visit that website, depending what operating system is detected, you’ll have the choice of either downloading an .exe file or running a script in your terminal. I’ll link some

Chapter 1 Recap

So far we've covered many topics ranging from a light introduction to the Rust programming language, it's history, features and benefits for Data Engineering. We also covered how it compares to other programming languages and which that made you excited about what is ahead of us:

How does Rust compare to Python (and other programming languages)?

It's important to know how Rust compares to Python if you consider switching some of your workloads to Rust. Using Rust instead of Python is a tough sell especially for things like data engineering. For any data problem that you can think of, there might surely be some

Advantages of Rust for Data Engineering

After going through some of Rust's main features, it might make sense to have a closer look at how these features help our data engineering efforts. Some of the points have already been covered but it makes sense to list them again in a general overview. Reliability and

Features of Rust

Now let's have a look at Rust's features, without going too much into details. Just a light overview of what this is all about and how it might be helfpul for us data engineers. Statically-typed and compiled Rust is a statically typed language. To simplify,

History of Rust

Now that we had a look at a short introduction on Rust for Data Engineering, let's get an understanding for where it came from and perhaps where it's headed to. The beginnings Graydon Hoare created Rust as a personal project in 2006 while working at Mozilla.

Introduction to Rust

We'll start this guide by a short introduction to Rust as well as showing a few code snippets for how you can start using Rust. 💡 It's not important to immediately understand everything. The important part is to get you to run Rust code as fast

Welcome to Data With Rust!

This website is dedicated to teaching you why and how to use Rust for data. It's structured as a book, but is a practical handbook on how to get started using the Rust programming language for Data Engineering tasks . I'll show you practical examples of how

Running code in the browser

The best way to learn is to try things out. With embedded coding environments this has never been easier: print("This code will run on a container somewhere and return here!") You can edit the code, and it will still run, feel free to experiment: print("This

Data With Rust: Update #2

Data With Rust: Update #1