-
Hi, Does Ray have a limit on the array size? Great app btw! |
Beta Was this translation helpful? Give feedback.
Answered by
sinnbeck
Jan 20, 2021
Replies: 1 comment
-
This is caused by VarCloner, which Ray uses to prepare the data. The default limit is 2500 items. Now if you take your arrays of 22 items and multiply with 114 (the cutoff) you get 2508, which is just beyond that limit. It would be possible to extend this, but I am unsure if that is a good idea (that limit is most likely there for a reason) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mlieshout
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is caused by VarCloner, which Ray uses to prepare the data. The default limit is 2500 items.
https://github.com/symfony/var-dumper/blob/5.x/Cloner/AbstractCloner.php#L189
Now if you take your arrays of 22 items and multiply with 114 (the cutoff) you get 2508, which is just beyond that limit.
It would be possible to extend this, but I am unsure if that is a good idea (that limit is most likely there for a reason)