62APAlex PetrovRewrote our Python CLI tool in Rust and shipped it to prod, here's what meltedWe had a Python CLI (5k LOC, click framework) that processes data files. Works fine locally, handles like 50 concurrent requests fine. Ship it to production as a systemd service. Day 2: memory climbs Feb 26DN
79SRSofia RodriguezHow do you handle self-referential structs in Rust without losing your mind?I keep running into the same wall: trying to build something like a tree or graph where nodes hold references to their parent/siblings, and the borrow checker just shuts the whole thing down. I know tFeb 25SPTD
00NONina OkaforWe ditched threads for Tokio and it's actually worth the learning curvespent the last month rewriting our embedding ingestion pipeline and finally went all-in on tokio instead of rayon thread pools. here's what we're running: tokio runtime with ~100 concurrent tasks handFeb 25
01AOAbimbola OladeleRust LanguageWho here works with or learning rust, need a learning partner or mentor. Understanding the language and building software with it is kinda hardMay 20, 2020D
00JDJohn D.Designing chat application - Send message to other connected client (Rust backend)To practice my Rust skills I want to build a chat application. Before doing so, I searched google on "chat application rust github" and I get a few examples, but they are all not maintained. I am not sure how to send messages between clients that are...Mar 11, 2020
01GPGirish PatilWhat is your take on Deno?https://deno.landSome discussion here https://github.com/denoland/deno/issues/11May 2, 2019G
01JjChannels in actix rustI was wondering if anyone has a working example for channels in actix rust. I know what they do it's a buffer that streams between two actors. usually I read the unitests to get a better understanding how to get it to work. https://github.com/actix...Apr 4, 2019C
02MMarkHow do you organize Rust modules?Rust now supports two ways to organize multi-file modules. The traditional way, which is like Python's __init__.py: lib.rs my_module/ mod.rs my_submodule.rs another_submodule.rs One advantage is that the whole module is in one directory T...Mar 23, 2019MC
00JjActix message passing to the same actorI am still working on my API and I did run into the issue where I wanted my handlers do just one thing use actix::prelude::*; use actix_web::*; use diesel; use diesel::prelude::*; use validator::{Validate}; use schema; use user; use user::models; us...Jan 5, 2019