elle VS history

Compare elle vs history and see what are their differences.

elle

Black-box transactional safety checker based on cycle detection (by jepsen-io)

history

Support library for working with Jepsen histories (by jepsen-io)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
elle history
5 1
614 7
1.6% -
8.5 6.2
3 months ago 5 months ago
Isabelle Clojure
Eclipse Public License 2.0 GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

elle

Posts with mentions or reviews of elle. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-06.
  • Why Is Jepsen Written in Clojure?
    8 projects | news.ycombinator.com | 6 Dec 2023
    Speaking very loosely, primitives on the JVM are values which are represented directly in memory, instead of as pointers to objects on the heap. Clojure generally treats everything as a pointer to a heap object. There is no specialized equivalent for, say, a vector of shorts, or a map where values are floats. The compiler can emit specialized function signatures for... IIRC longs and doubles, but other types (e.g. byte, float) aren't directly accessible--they go through widening conversion. It's also easy for the compiler to quietly fail to recognize it can preserve primitives in some kinds of loops, so you wind up with what Java calls "autoboxing": wrapping a primitive in a corresponding Object type.

    Here's a recent example of some code in a hot path inside Elle, one of Jepsen's safety checkers. It does a lot in primitive, packed structs and bitmasks to avoid pointer chasing.

    https://github.com/jepsen-io/elle/blob/main/src/elle/BFSPath...

    There was actually a Clojure version of this earlier that got pretty close perf-wise, but I wound up dropping to Java for it instead:

    https://github.com/jepsen-io/elle/blob/913cbff5ebb19ba850c0a...

  • Black-box transactional safety checker based on cycle detection
    1 project | /r/Database | 9 Aug 2021
    1 project | /r/Clojure | 9 Aug 2021
    1 project | /r/isabelle | 9 Aug 2021
  • Elle, the New Tool from Aphyr
    1 project | news.ycombinator.com | 9 Aug 2021

history

Posts with mentions or reviews of history. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-06.
  • Why Is Jepsen Written in Clojure?
    8 projects | news.ycombinator.com | 6 Dec 2023
    Nope! For a few reasons Jepsen sticks very closely to Traditional JVM Threads.

    Part of that is because Jepsen isn't hyper-concurrent. Most concurrency errors manifest in just a handful of client threads, and the JVM will run ~10K threads without too many issues.

    Another part is that I spend a lot of time debugging and profiling. Core.async turns stacktraces into Swiss cheese--it has to, to perform its implicit continuation-passing magic. But that can make it really hard to figure out Who Called What When, and Why Is This Process Slow. Standard blocking IO calls are also something that my profiler (YourKit) can analyze well.

    Finally, I invest a lot of time into tuning Jepsen for speed, and manage the handoff of data between threads carefully. In a system where actors were handing off state constantly core.async would be a bigger help, but there's really only a couple shapes for concurrent handoff in Jepsen, and they're addressed by either j.u.c. queues, forkjoin-style structured concurrency, or Weird Transactional Threadpool stuff.

    For a little more on this, take a look at https://github.com/aphyr/dom-top or https://github.com/jepsen-io/history/blob/main/src/jepsen/hi...

What are some alternatives?

When comparing elle and history you can also consider the following projects:

dom-top - Unorthodox control flow, for Clojurists with masochistic sensibilities.