Home JSON Logic Without Models
Post
Cancel

JSON Logic Without Models

Holy performance increase, Batman!

I recently made an update to JsonLogic.Net that cut run times and memory usage in half!

In half?!

Yes! Here’s the benchmark:

MethodCountMeanErrorStdDevGen0Allocated
Models11,655.9 us26.76 us26.28 us410.1563838.03 KB
Nodes1734.5 us8.16 us7.23 us236.3281482.61 KB
Models1016,269.0 us167.06 us139.50 us4093.75008380.5 KB
Nodes107,210.7 us25.26 us21.09 us2359.37504826.08 KB
Models100164,267.3 us2,227.54 us1,974.66 us41000.000083803.81 KB
Nodes10072,195.7 us139.28 us116.30 us23571.428648262.05 KB

In this table, “Models” is the old way, and “Nodes” is the new way.

As you can see, “Nodes” takes less than half as long to run, and it uses just over half the memory.

What do “Models” and “Nodes” represent?

From the initial release of the library, JSON Logic is represented using its own object model via the Rule abstraction. It would result in a large tree structure of strongly typed rules. This is “Models”.

The benefit of this approach is that strong typing, meaning that if you wanted to build some logic in code, you could use the associated builder methods on the static JsonLogic class and you didn’t have to worry about getting argument types wrong.

However, as you can expect, building out this rule tree means heap allocations, and allocations, in general, are slow.

The “Nodes” approach, introduced with v5.2.0, doesn’t use the object model. Instead, the system is stateless. It uses JsonNode to represent the logic, and the system runs “static” handlers depending on which operation key is present. This is the approach that I took with JSON-e, and it worked out so well that I wanted to see where else I could apply it.

I’ve had several attempts at making this approach for JSON Schema, and while it works, the performance isn’t there yet.

JSON-e and JSON Logic also share a common basic design: they’re both JSON representations of instructions that are processed with some kind of context data.

So no more strong typing?

I think that’s where I want to take this library. With all of the soft typing and implicit conversions that JSON Logic uses anyway, I don’t think it’s going to be much of a problem for users.

Even on the JSON Logic playground, you enter your logic and data as JSON and it runs from there. I don’t see why this library can’t work the same way.

I don’t really see a reason to need an object model. (And with functional programming on the rise, maybe this stateless approach is the way of the future.)

But ultimately, it comes down to you. Have a play with the new setup. The docs are already updated. I’d like to hear what you think.

This post is licensed under CC BY 4.0 by the author.

Dropping Project Support for Code Generation

Better JSON Pointer