raikv VS wordcount

Compare raikv vs wordcount and see what are their differences.

raikv

Persistent key value store, serverless shared memory caching (by raitechnology)

wordcount

Counting words in different programming languages. (by juditacs)
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
raikv wordcount
2 2
7 124
- -
7.3 0.0
3 months ago 3 months ago
C++ Java
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.

raikv

Posts with mentions or reviews of raikv. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-03-15.
  • New x86 micro-op vulnerability breaks all known Spectre defenses
    1 project | news.ycombinator.com | 1 May 2021
    I have a graph for this:

    https://github.com/raitechnology/raikv/blob/master/graph/mt_...

    The CPU in this case is a Threadripper 3970x, 32 cores, 64 SMT.

    My experience is this: When the L3 cache is effective, then the memory latency hiding via memory prefetch works well across SMT threads. If the hashtable load requires a chain walk, the SMT latency hiding is less effective because the calculated prefetch location is not the actual hit. I couldn't get prefetching multiple slots as the load increased to be as effective as prefetching a single slot.

  • Performance comparison: counting words in Python, Go, C++, C, Awk, Forth, Rust
    16 projects | news.ycombinator.com | 15 Mar 2021
    Amusingly, I've done a multi-threaded version of the word counting program in order to test a shm kv store. I needed benchmark that created a lot of cross thread concurrent accesses to keys and I found a blog about this test. My version has serious constraints though, you have to create a shared memory map with enough space to hold all of the keys beforehand, as it doesn't resize the shm kv map as it runs.

    This is the source for it:

    https://github.com/raitechnology/raikv/blob/master/test/ctes...

    The speedup of the multi-threaded version vs the single-threaded version is about linear. The single threaded version uses 2 threads, one to read stdin and one to hash the keys, the 16 threaded version uses one thread to read, 16 to hash.

    $ time ctest -t 1 < ~/data/enwiki-p10p30303

wordcount

Posts with mentions or reviews of wordcount. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-03-15.

What are some alternatives?

When comparing raikv and wordcount you can also consider the following projects:

countwords - Playing with counting word frequencies (and performance) in various languages.

KindleClippingsTranslator - Czytacz slowek

adix - An Adaptive Index Library for Nim

llfio - P1031 low level file i/o and filesystem library for the C++ standard

generate-random-numbers

parallel-hashmap - A family of header-only, very fast and memory-friendly hashmap and btree containers.

word_frequency_nim - The word frequency program, written in simple nim.

abseil-cpp - Abseil Common Libraries (C++)

CPython - The Python programming language