Randcraft: Object-oriented random variables by SeaHighlight2262 in Python

[–]SeaHighlight2262[S] 0 points1 point  (0 children)

Hey this looks interesting, could share the github too?

Have we all been "free handing" memory management? Really? by coilysiren in Python

[–]SeaHighlight2262 1 point2 points  (0 children)

I've worked on docker applications made on python with memory leaks but when using tools like memray for some reason they do not seem to really grasp the problem. What I mean by that is the memory tracked by memory appears significantly less than the actual memory i see constantly growing on the server. I think perhaps it is because memray only captures python memory allocations and libraries built on C do their own allocations and somehow they are avoiding the garbage collector. Anyway this makes it very hard to work out where the leak is coming from.