mit-pdos / noria

Fast web applications through dynamic, partially-stateful dataflow
Apache License 2.0
4.99k stars 242 forks source link

Can I link my application with noria into a single program? #166

Closed QianNangong closed 4 years ago

QianNangong commented 4 years ago

Like sqlite

jonhoo commented 4 years ago

Yeah, you can embed Noria by using the noria-server crate and LocalAuthority. Take a look at https://github.com/mit-pdos/noria/blob/master/server/examples/local-server.rs.

Keep in mind that Noria isn't really production-ready though, so I wouldn't use it for anything much more serious than technical curiosity and experimentation :)

QianNangong commented 4 years ago

Oh thanks!