hyhac VS refound

Compare hyhac vs refound and see what are their differences.

hyhac

A HyperDex Haskell Client (by AaronFriel)

refound

a RethinkDB implementation backed by FoundationDB (by srh)
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
hyhac refound
1 1
12 13
- -
10.0 5.5
almost 9 years ago about 2 months ago
Haskell C++
BSD 3-clause "New" or "Revised" License 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.

hyhac

Posts with mentions or reviews of hyhac. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-03.
  • FoundationDB: A Distributed Key-Value Store
    13 projects | news.ycombinator.com | 3 Jul 2023
    When I was writing a Haskell client library for Hyperdex, another distributed kv store, I found it incredibly helpful to implement a simulator for correctness. This helped me identify which behavior was unspecified (arithmetic overflow: should error) or where my simulator deviated.

    https://github.com/AaronFriel/hyhac/blob/master/test/Test/Hy...

    Alas, I think Hyperdex development paused a few years later. It's a shame that it stopped then.

refound

Posts with mentions or reviews of refound. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-03.
  • FoundationDB: A Distributed Key-Value Store
    13 projects | news.ycombinator.com | 3 Jul 2023
    100%. I don't have the time to read the paper but online schema changes, with the ability to fail and abort the entire operation if one row is invalid, are basically the same problem as background index building.

    If instead of using some generic K/V backend, it made use of specific FDB features, it might be even better. Conflict ranges and snapshot reads have been useful for me for some background index building designs, and atomic ops have their uses.

    It is not necessary to store a version on each row. I can't remember why I did things this way, but https://github.com/srh/refound has no versions on persisted objects, has online background index building, and could do schema updates the same way. (That system doesn't have schemas.) When there is an active index build, incoming writes already read about active index build ranges and can participate in index building if it's interfering with their keys, to avoid starving it out if they're hammering the table with writes. So they know based on the ranges which keys have index entries. Adding versions would be sensible for performance reasons, and it would also minimize the occasions that writes have to read sindex build metadata while supporting this starvation mitigation.

    > Oh yes, it also has a Raft implementation, so if you want multi-cluster FDB with Raft-driven failover you could do that too (iirc, FDB doesn't have this out of the box).

    I don't know what you mean by this. Multiple FDB clusters?

What are some alternatives?

When comparing hyhac and refound you can also consider the following projects:

tigris - Tigris is an Open Source Serverless NoSQL Database and Search Platform.

foundationdb - FoundationDB - the open source, distributed, transactional key-value store

Permazen - Language-Natural Persistence Layer for Java

shuttle - Shuttle is a library for testing concurrent Rust code

fdb-record-layer - A record-oriented store built on FoundationDB

relic - Functional relational programming for Clojure(Script).

mvsqlite - Distributed, MVCC SQLite that runs on FoundationDB.

datascript - Immutable database and Datalog query engine for Clojure, ClojureScript and JS