Re: OutOfMemoryError when using Plumatic Schema and infinite lazy lists

2017-12-10 Thread Jason Wolfe
Hi Alan, With validation turned on, Schema eagerly validates your full inputs so this is the expected (if a bit unfortunate) behavior. There is a little context on the issue and some potential workarounds here : https://github.com/plumatic/schema/issues/340#issuecomment-185321295 Best, Ja

OutOfMemoryError when using Plumatic Schema and infinite lazy lists

2017-12-09 Thread Alan Thompson
I am a huge fan of Plumatic Schema, and it regularly helps me to find mistakes in my code early in the development process. However, I just tracked down a very unexpected error when using a lazy infinite list such as that produced by `(range)` Suppose you define two simple functions like `clojur