Jan Ypma
Jan Ypma
This adds an index table to cassandra, so events can be queried "roughly" by time. The akka journal query plugin implementation is in [a separate library](https://github.com/jypma/akka-persistence-cassandra-query). The way this works,...
Currently, in a situation of a high `idle-timeout`, a large `max-open-requests` queue, and a troubled slowly-responding server, the queue is going to fill up. Once the server recovers, potentially very...
This commit introduces a first attempt at a generic statistics and metrics mechanism to akka-http, so we can allow users to use their monitoring implementation of choice. Metrics are sent...
Shared connection pools are maintained per proxy host, ignoring the target host, since that proxy is the thing we're making actual TCP connections to. If Http.outgoingConnection is invoked directly, proxy...
The `sbt-native-packager` plugin in its [documentation](https://sbt-native-packager.readthedocs.io/en/stable/archetypes/java_app/customize.html#via-build-sbt) and behavior interprets the SBT `javaOptions` setting to mean "command-line options and JVM options". However, the intent to mix both command-line and JVM options...
Adding them was straightforward. A few symbols resulted in duplicates when linking, hence the extra "-D" hackery in the plugins Makefile.
Cardinal has a great feature to automatically update a remote embedded instance, originally for the MOD devices. I'm currently trying to get Cardinal onto [Zynthian](https://zynthian.org/), where this functionality would also...
In order to be most effective in helping contributors be efficient with this project, I think we can benefit from writing a few things down. A few examples come to...
Would it make sense to have a `Dockerfile` that automatically sets up a docker container for this thing? That would make it a lot easier for others to set up...
If there are any non-ASCII characters in the request URI, `curl` will send those through in raw UTF-8 form by default. That is almost never what you'd want, since all...