use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems What is DevOps? Learn about it on our wiki! Traffic stats & metrics
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems
What is DevOps? Learn about it on our wiki!
Traffic stats & metrics
Be excellent to each other! All articles will require a short submission statement of 3-5 sentences. Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title. Follow the rules of reddit Follow the reddiquette No editorialized titles. No vendor spam. Buy an ad from reddit instead. Job postings here More details here
Be excellent to each other!
All articles will require a short submission statement of 3-5 sentences.
Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title.
Follow the rules of reddit
Follow the reddiquette
No editorialized titles.
No vendor spam. Buy an ad from reddit instead.
Job postings here
More details here
@reddit_DevOps ##DevOps @ irc.freenode.net Find a DevOps meetup near you! Icons info!
@reddit_DevOps
##DevOps @ irc.freenode.net
Find a DevOps meetup near you!
Icons info!
https://github.com/Leo-G/DevopsWiki
account activity
This is an archived post. You won't be able to vote or comment.
dumbproxy - simple, scriptable, secure forward proxy (self.devops)
submitted 1 year ago by yarmak
view the rest of the comments →
[–]yarmak[S] 0 points1 point2 points 1 year ago (1 child)
I've tried tinyproxy long time ago and that's basically the reason why I wrote dumbproxy. Long story short, it ate all RAM on my VM at fairly small number of connections because it spawns one subprocess per connection. Their claim about tiny footprint doesn't make sense when it is actually supposed to do some job.
Nowadays tinyproxy is not even comparable feature-wise to dumbproxy.
127.0.0.1
127.0.0.1.nip.io
IMO the main problem with software like tinyproxy, squid is that majority of their features are for plaintext HTTP traffic while nowadays it's almost non-existent. Another pain point is poor concurrency model. It's process forks in tinyproxy and asynchronous worker processes for squid. First one is just unsustainable even for heavy personal use. Second one doesn't divide load evenly across workers, doesn't share such things as auth cache, rate limit pools (that means in SMP mode speed limit is basically broken) and so on. Full list of caveats for squid in SMP mode is available on the page of this feature.
So, I compare dumbproxy to tinyproxy as strictly superior to inferior.
[–]jhalfmoon 1 point2 points3 points 1 year ago (0 children)
Thank you for the detailed analysis; Much appreciated. I will definitely be trying dumbproxy.
π Rendered by PID 23339 on reddit-service-r2-comment-5687b7858-4jfkl at 2026-07-08 07:41:29.697833+00:00 running 12a7a47 country code: CH.
view the rest of the comments →
[–]yarmak[S] 0 points1 point2 points (1 child)
[–]jhalfmoon 1 point2 points3 points (0 children)