This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 841
Lazy event parsing #4948
Comments
janisz
added a commit
to janisz/marathon
that referenced
this issue
Jan 18, 2017
Change SSE event stream handler to use events that are lazy parsed to JSON. This will reduce CPU time when most events are filtered and/or when more then one subscriper is connected.
janisz
added a commit
to janisz/marathon
that referenced
this issue
Jan 18, 2017
Change SSE event stream handler to use events that are lazy parsed to JSON. This will reduce CPU time when most events are filtered and/or when more then one subscriper is connected.
janisz
added a commit
to janisz/marathon
that referenced
this issue
Jan 18, 2017
Change SSE event stream handler to use events that are lazy parsed to JSON. This will reduce CPU time when most events are filtered and/or when more then one subscriper is connected.
janisz
added a commit
to janisz/marathon
that referenced
this issue
Jan 19, 2017
janisz
added a commit
to janisz/marathon
that referenced
this issue
Jan 23, 2017
Change SSE event stream handler to use events that are lazy parsed to JSON. This will reduce CPU time when most events are filtered and/or when more then one subscriper is connected.
janisz
added a commit
to janisz/marathon
that referenced
this issue
Jan 30, 2017
Change SSE event stream handler to use events that are lazy parsed to JSON. This will reduce CPU time when most events are filtered and/or when more then one subscriper is connected.
janisz
added a commit
to janisz/marathon
that referenced
this issue
Jan 30, 2017
Change SSE event stream handler to use events that are lazy parsed to JSON. This will reduce CPU time when most events are filtered and/or when more then one subscriper is connected.
janisz
added a commit
to janisz/marathon
that referenced
this issue
Feb 1, 2017
unterstein
added a commit
to janisz/marathon
that referenced
this issue
Feb 6, 2017
unterstein
pushed a commit
that referenced
this issue
Feb 6, 2017
janisz
added a commit
to janisz/marathon
that referenced
this issue
Feb 6, 2017
Cherry-picked: de22344
janisz
added a commit
to janisz/marathon
that referenced
this issue
Feb 6, 2017
We can use `jsonString` form `MarathonEvent` to ommit double parsing evnets.
janisz
added a commit
to janisz/marathon
that referenced
this issue
Feb 6, 2017
We can use `jsonString` form `MarathonEvent` to ommit double parsing evnets.
janisz
added a commit
to janisz/marathon
that referenced
this issue
Feb 6, 2017
We can use `jsonString` form `MarathonEvent` to ommit double parsing evnets.
unterstein
pushed a commit
that referenced
this issue
Feb 7, 2017
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Right now every event is parsed (even if nobody will reciieve it) take a look at HttpEventStreamHandleActor. We can solve this by creating case class with
lazy toJson
filed that will parse event and memorize value for next subscriber.#3154
The text was updated successfully, but these errors were encountered: