Justin Israel
Justin Israel
@tophe thanks for confirming that your issue was looking at virtual memory and not RSS. Good to know that with my repro code, you observed a normal memory growth that...
That's ok. It probably wasn't very obvious and it might only happen in a loop. Enjoy!
It's only a leak if the RSS continues to increase as you repeat the same calls, and never reduces. Your example shows it goes up to 11GB and then reduces...
Well yes if you do 10 in parallel you are going to greatly increase the memory consumed by ImageMagick. That part is known. But if you only use a single...
Here is a modified version of your test: ```go package main import ( "fmt" "runtime" "sync" "time" "gopkg.in/gographics/imagick.v3/imagick" ) // get gif // wget https://upload.wikimedia.org/wikipedia/commons/d/da/A_weather_balloon_exploding.gif func main() { fmt.Println("starting with...
`MagickWand.SetResourceLimit()` was moved to package level because it was never actually a method of a single wand. It's a setting that applies to the entire ImageMagick process.
Can someone comment on the the status of this ticket, vs seemingly similar work in https://github.com/atlassian-api/atlassian-python-api/pull/1522? Is this, or the other MR, required for this library to actually support Confluence...
Hey. So we had actually already added support for this by subclassing `FileSequence` and replacing the needed class patterns. See commit https://github.com/justinfx/fileseq/commit/ef04d118f4a9e5bc5c565af020f4cad566bebf2c via #81
Oh I see. Yes if you introduce a new padding character then you need to implement the needed parts for that as well
@herronelou yea so if you just want to be closer to the pattern of what fileseq already does in its `getPaddingNum`, you can just do your custom padding matches up...