mit-pdos / noria

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

Replace local TCP connections with in-memory channels #83

Closed jonhoo closed 6 years ago

jonhoo commented 6 years ago

Now that all the I/O is tokio based, it should be relatively straightforward to replace the communication channel used for domain-to-domain sends with in-memory channels when the source and destination are in the same process. This should significantly speed up certain workloads as we don't have to go through serialization and syscalls.