Bases: object
Constructs an EvalManager object.
| Parameters: |
|
|---|
Performs vector evaluations through pipes.
| Parameters: |
|
|---|
The vector evaluation is sent in chunks of size self.max_vectorized.
Decodes given JSON string and returns its data.
>>> orig = {1: 2, 'a': [1,2]}
>>> data = json_decode(json_encode(orig))
>>> data[str(1)]
2
>>> data['a']
[1, 2]