cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Does RxSession increase the speed?

Hello there

Anyone who has experienced the promise, streaming and RxSession API, does RxSession increase the speed of data transfer from Neo4j to a javascript web sever if set properly?

Thanks

1 ACCEPTED SOLUTION

It's not so much about speed, although time to first record should be better.

It's more about better resource usage and backpressure if the client can't keep up

And better usage of cpus on server and client that are not blocked by thread if the stream is not advancing.

One example is here:

View solution in original post

2 REPLIES 2

It's not so much about speed, although time to first record should be better.

It's more about better resource usage and backpressure if the client can't keep up

And better usage of cpus on server and client that are not blocked by thread if the stream is not advancing.

One example is here:

Thanks

It's not about speed but about using resources more efficiently.