maurer / holmes

Datalog engine with extensions for integrating analyses
MIT License
38 stars 4 forks source link

Run rules asynchronously #33

Closed maurer closed 7 years ago

maurer commented 7 years ago

Rather than using recursion to trigger one rule from another, I've restructured them as async tasks using tokio_core. This also paves the way for the use of tokio_postgres to get asynchronous database interaction for improved database performance.

Closes #15 #26