Kelly Sommers

Results 13 issues of Kelly Sommers

This is the current definition of `art_insert()`: ``` /** * Inserts a new value into the ART tree * @arg t The tree * @arg key The key * @arg...

Memory mapped file write performance is on average `10x` slower than the `write()` syscall. That's why many memory mapped based libraries bypass this limitation and call `write()` to have fast...

I've been measuring cloud instances and I currently don't have a way to easily visualize the results. I have done this over and over and over in my career and...

We should create some independent benchmarks for storage engines. We can get input from the various storage engine authors to make sure we are creating apples to apples comparisons and...

enhancement
help wanted

The current [HdrHistogram] R script uses the full filename path and extension as the name in the legend. I think it would be a lot prettier to strip those out....

bug
help wanted

When you zoom into a `0 to 90%` graph you don't see any labels for `50%, 75%` etc. See `Figure 1` below. [![results](https://github.com/kellabyte/go-benchmarks/raw/master/results/queues_hdrhistogram_p90.png)](https://github.com/kellabyte/go-benchmarks/raw/master/results/queues_hdrhistogram_p90.png) _Figure 1_. Example of p90 report. [This](https://github.com/kellabyte/go-benchmarks/blob/master/plotting/hdr_histogram.r)...

bug
help wanted

Hello! I'm new to GoLive but I'm really excited about this project! I've ran the examples and I've tried to create my own from the start to get familiar but...

I have duration in seconds on the Y scale and percentages on the X scale but when I set LogScale I get the top and right parts of the graph...

Thanks so much for this project! I'm finding it really fun to work with. I'm new to gofiber and I was wondering how would I use golive with gofiber and...

How do I link SuperMalloc to replace `malloc()`? Is this correct? ``` LD_PRELOAD=lib/SuperMalloc/release/lib/libsupermalloc_pthread.so ./build/hello_world ``` I'm using it this way and I'm not seeing any performane improvement in a benchmark...