mirror of
https://github.com/cbeuw/Cloak.git
synced 2026-04-25 20:45:59 +03:00
[GH-ISSUE #174] is it possible to implment a Rust version of this plugin? #142
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Cloak#142
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @videni on GitHub (Sep 3, 2021).
Original GitHub issue: https://github.com/cbeuw/Cloak/issues/174
@cbeuw commented on GitHub (Sep 3, 2021):
Well it's certainly possible and I could do it for fun, though it's unlikely I'll find much motivation for it because Go works fine. I haven't hit much rough edges like needing generics and the performance is very satisfactory after the optimisations I did last winter (2μs latency overhead and ~2.5GB/s throughput on loopback for a single stream). Rust can do better for sure but I don't think performance is bottlenecking this project in any regard
@videni commented on GitHub (Sep 7, 2021):
@cbeuw , thanks for your quick response, the performance is good enough, howerver the memory consuming of Go sometime change dramstically because its garbage recycle, specially when system are extremely busy comaring with Rust. Rust should be more steady, I like Rust more than Go beside performance somehow😃. I'd like to help if you initiate a Rust version.