Cap'n Proto VS ustore

Compare Cap'n Proto vs ustore and see what are their differences.

Cap'n Proto

Cap'n Proto serialization/RPC system - core tools and C++ library (by capnproto)

ustore

Multi-Modal Database replacing MongoDB, Neo4J, and Elastic with 1 faster ACID solution, with NetworkX and Pandas interfaces, and bindings for C 99, C++ 17, Python 3, Java, GoLang πŸ—„οΈ (by unum-cloud)
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
Cap'n Proto ustore
66 15
11,201 488
1.0% 2.5%
9.2 9.6
4 days ago 8 months ago
C++ C++
GNU General Public License v3.0 or later Apache License 2.0
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.

Cap'n Proto

Posts with mentions or reviews of Cap'n Proto. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-09.
  • Mysterious Moving Pointers
    1 project | news.ycombinator.com | 14 Apr 2024
    Yeah I pretty much only use my own alternate container implementations (from KJ[0]), which avoid these footguns, but the result is everyone complains our project is written in Kenton-Language rather than C++ and there's no Stack Overflow for it and we can't hire engineers who know how to write it... oops.

    [0] https://github.com/capnproto/capnproto/blob/v2/kjdoc/tour.md

  • Show HN: Comprehensive inter-process communication (IPC) toolkit in modern C++
    2 projects | news.ycombinator.com | 9 Apr 2024
    - may massively reduce the latency involved.

    Those sharing Cap'n Proto-encoded data may have particular interest. Cap'n Proto (https://capnproto.org) is fantastic at its core task - in-place serialization with zero-copy - and we wanted to make the IPC (inter-process communication) involving capnp-serialized messages be zero-copy, end-to-end.

    That said, we paid equal attention to other varieties of payload; it's not limited to capnp-encoded messages. For example there is painless (<-- I hope!) zero-copy transmission of arbitrary combinations of STL-compliant native C++ data structures.

    To help determine whether Flow-IPC is relevant to you we wrote an intro blog post. It works through an example, summarizes the available features, and has some performance results. https://www.linode.com/blog/open-source/flow-ipc-introductio...

    Of course there's nothing wrong with going straight to the GitHub link and getting into the README and docs.

    Currently Flow-IPC is for Linux. (macOS/ARM64 and Windows support could follow soon, depending on demand/contributions.)

  • Condvars and atomics do not mix
    1 project | news.ycombinator.com | 24 Mar 2024
    FWIW, my C++ toolkit library, KJ, does the same thing.[0]

    But presumably you could still write a condition predicate which looks at things which aren't actually part of the mutex-wrapped structure? Or does is the Rust type system able to enforce that the callback can only consider the mutex-wrapped value and values that are constant over the lifetime of the wait? (You need the latter e.g. if you are waiting for the mutex-wrapped value to compare equal to some local variable...)

    [0] https://github.com/capnproto/capnproto/blob/e6ad6f919aeb381b...

  • Cap'n'Proto: infinitely faster than Protobuf
    1 project | news.ycombinator.com | 26 Feb 2024
  • I don’t understand zero copy
    2 projects | /r/rust | 7 Dec 2023
    The second one is to encode data in such a way that you can read it and operate on it directly from the buffer. You write data in a layout that is the same, or easily transformed as types in memory. To do that you usually need to encode with a known schema, only Sized types to efficiently compute fields locations as offsets in the buffer, and you usually represent pointers as offset into the encode. You can look at capnproto protocol for instance https://capnproto.org/
  • OpenTF Renames Itself to OpenTofu
    5 projects | news.ycombinator.com | 20 Sep 2023
    Worked well for Cap'n Proto (the cerealization protocol)! https://capnproto.org/
  • A Critique of the Cap'n Proto Schema Language
    3 projects | news.ycombinator.com | 20 Aug 2023
    With all due respect, you read completely wrong.

    * The very first use case for which Cap'n Proto was designed was to be the protocol that Sandstorm.io used to talk between sandbox and supervisor -- an explicitly adversarial security scenario.

    * The documentation explicitly calls out how implementations should manage resource exhaustion problems like deep recursion depth (stack overflow risk).

    * The implementation has been fuzz-tested multiple ways, including as part of Google's oss-fuzz.

    * When there are security bugs, I issue advisories like this:

    https://github.com/capnproto/capnproto/tree/v2/security-advi...

    * The primary aim of the entire project is to be a Capability-Based Security RPC protocol.

  • Cap'n Proto: serialization/RPC system – core tools and C++ library
    1 project | news.ycombinator.com | 28 Jul 2023
  • Sandstorm: Open-source platform for self-hosting web app
    15 projects | news.ycombinator.com | 4 Jun 2023
    I like how they use capability-based security [0] and use Cap'n Proto protocol. This is another technology that is slow to get broad adoption, but has many things going for when compared to e.g. Protocol Buffers (Cap'n Proto is created by the primary author of Protobuf v2, Kenton Varda).

    [0] https://sandstorm.io/how-it-works#capabilities

    [1] https://capnproto.org

  • Flatty - flat message buffers with direct mapping to Rust types without packing/unpacking
    4 projects | /r/rust | 10 May 2023
    Related but not Rust-specific: FlatBuffers, Cap'n Proto.

ustore

Posts with mentions or reviews of ustore. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-06.
  • Up to 100x Faster FastAPI with simdjson and io_uring on Linux 5.19+
    4 projects | /r/programming | 6 Mar 2023
    Just to clarify, I meant in other projects, like the UKV.
  • Show HN: Up to 100x Faster FastAPI with simdjson and io_uring on Linux 5.19
    20 projects | news.ycombinator.com | 6 Mar 2023
    Yes, we also constantly think about that! In the document collections of UKV, for example, we have interoperability between JSON, BSON, and MessagePack objects [1]. CSV is another potential option, but text-based formats aren't ideal for large scale transmissions.

    One thing people do - use two protocols. That is the case with Apache Arrow Flight RPC = gRPC for tasks, Arrow for data. It is a viable path, but compiling gRPC is a nightmare, and we don't want to integrate it into our other libraries, as we generally compile everything from sources. Seemingly, UJRPC can replace gRPC, and for the payload we can continue using Arrow. We will see :)

    [1]: https://github.com/unum-cloud/ukv/blob/main/src/modality_doc...

  • UKV: Replacing MongoDB, Neo4J, and Elastic with a single open-source ACID transactional NoSQL database with Zero-Copy Semantics, replaceable backends, and a vast ecosystem of bindings for C, C++, Python, Java, GoLang
    1 project | /r/opensource | 1 Mar 2023
    ![Map](https://github.com/unum-cloud/ukv/raw/main/assets/charts/Intro.png)
  • Beating OpenAI CLIP with 100x less data and compute
    2 projects | news.ycombinator.com | 28 Feb 2023
    Great point! I would be happy to get more input and brain-storm a good pricing model together, one that is fair both for developers and for users.

    We have an source project UKV, that partly overlaps with vector-search: https://github.com/unum-cloud/ukv

    Another one - UNSW, is a placeholder for now: https://github.com/unum-cloud/unsw

    Both will be soon available on cloud marketplaces, but server-less options are a bit harder to cook. Our Discord is the best place to continue conversation: https://discord.gg/Bbh2bjNhvz

    Thank you for advice!

  • UKV: Modular Transactional NoSQL DBMS Bringing Zero-Copy Semantics to Storage
    1 project | news.ycombinator.com | 31 Jan 2023
  • PageRank Algorithm for Graph Databases
    8 projects | news.ycombinator.com | 30 Jan 2023
  • New to Github.. what are Github apps
    1 project | /r/opensource | 23 Jan 2023
    Most "apps" are for CI/CD pipelines: testing, coverage reports, reviews automation, deployments, and so on. GitHub is a lot more than Git hosting these days. It comes with a web version of VS Code, GitHub Copilot AI, vulnerability detection tools, discussions, roadmap boards, and so on.
  • Python bindings for RocksDB and LevelDB
    2 projects | /r/Python | 13 Jan 2023
    Documentation
  • Bullshit Graph Database Performance Benchmarks
    10 projects | news.ycombinator.com | 12 Jan 2023
    I am really stunned by this story. It made me check the MemGraph benchmarks section. Don't get me wrong, it may be 10-100x faster than Neo4J in even the most basic operations. Moreover, given the quality of Neo4J, it is hard not to be that much quicker. Even Postgres and MySQL are better at storing graphs than Neo4J.

    ---

    Disclosure: I have worked on Graph Algorithms, Graph Databases, and Database Engines for years, and we are now preparing a commercial solution based on UKV [1]. I don't know anyone at MemGraph or Neo4J. Never used the first. As for the second, I am not a fan.

    ---

    Aside from licensing, there are 3 primary complaints. I will address them individually, and I am open to a discussion.

    A. Using Python for Benchmarks instead of Gatling. I don't entirely agree with this. Python still has the fastest-growing programming community while already being one of the 2 most popular languages. Gatling, however, never heard of it. Choosing between the two, I would pick Python. But neither works if you want to design a High-Performance benchmark for a fast system. Without automatic memory management and expensive runtimes, you can only implement those in C, C++, Rust, or another systems-programming language. We have faced that too many times that the benchmark itself works worse than the system it is trying to evaluate [2].

    B. Using hardware from 2010 [3], weird datasets [4]. This shocked me. When I looked at the charts [5] and the benchmarking section, it seemed highly professional and good-looking. I wouldn't expect less from a startup with $20M VC funding. But the devil is in the details. I would have never expected anyone benchmarking a new DBMS to use now 13-year-old CPUs and an unknown dataset. Assuming current developer salaries, hiring people to design a DBMS doesn't make sense if you will be evaluating on a $1000 machine is just financially irresponsible. We buy expensive servers, they cost like sports cars or even apartments in poorer countries. It is hard to maintain, but they are essential to quality work. It is sad to see companies taking such shortcuts. But to be a devil's advocate, there is no 1 graph benchmark or dataset that everyone agrees on. So I imagine people experimenting with multiple real datasets of different sizes or generating them systemically using one of the Random Generator algorithms. In UKV, we have used Twitter data to construct both document and graph collections. In the past, we have also used `ci-patent`, `bio-mouse-gene`, `human-Jung2015-M87102575`, and hundreds of other public datasets from the Network Repository and SNAP [6]. There are datasets of every shape and size, reaching around 1 Billion edges, in case someone is searching for data. For us the next step is the reconstruction of the Web from the 300 TB CommonCrawl dataset [7]. There is no such Graph benchmark in existence, but it is the biggest public dataset we could find.

    C. Running query different number of times for various engines. This can be justified, and it is how current benchmarks are done. You are tracking not just the mean execution time but also variability, so if at some point results converge, you abrupt before hitting the expected iterations number to save time.

    ---

    LDBC [8] seems like a good contestant for a potential industry standard, but it needs to be completed. Its "Business Intelligence workload" and "Interactive workload" categories exclude any real "Graph Analytics". Running an All-Pairs-Shortest-Paths algorithm on a large external memory graph could have been a much more interesting integrated benchmark. Similarly, one can make large-scale community detection or personalized recommendations based on Graphs and evaluate the overall cost/performance. It, however, poses another big challenge. Almost all algorithm implementations for those problems are vertex-centric. They scale poorly with large sparse graphs that demand edge-centric algorithms, so a new implementation has to be written from scratch. We will try to allocate more resources towards that in 2023 and invite anyone curious to join.

    ---

    [1]: https://github.com/unum-cloud/ukv

  • UKV: Open Binary Interface for NoSQL Database Management
    1 project | news.ycombinator.com | 11 Jan 2023

What are some alternatives?

When comparing Cap'n Proto and ustore you can also consider the following projects:

gRPC - The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)

kuzu - Embeddable property graph database management system built for query speed and scalability. Implements Cypher.

Protobuf - Protocol Buffers - Google's data interchange format

usearch - Fast Open-Source Search & Clustering engine Γ— for Vectors & πŸ”œ Strings Γ— in C++, C, Python, JavaScript, Rust, Java, Objective-C, Swift, C#, GoLang, and Wolfram πŸ”

FlatBuffers - FlatBuffers: Memory Efficient Serialization Library

Unquery - Command line query tool for JSON files

ZeroMQ - ZeroMQ core engine in C++, implements ZMTP/3.1

typedload - Python library to load dynamically typed data into statically typed data structures

Apache Thrift - Apache Thrift

hash-db - Experimental distributed pseudomultimodel keyvalue database (it uses python dictionaries) imitating dynamodb querying with join only SQL support, distributed joins and simple Cypher graph support and document storage

MessagePack - MessagePack serializer implementation for Java / msgpack.org[Java]

yyjson - The fastest JSON library in C