Live data from Hacker News

Viewing profile — JedMartin

JedMartin

HN member
Joined
Tue, Nov 29, 2022, 11:31 AM UTC
HN karma
54
Public activity
9 items

About JedMartin

No profile information was provided.

Recent public activity

  1. comment
  2. comment
    Comment #43399346

    You would change the rules, but I think the result would largely remain the same. As a market participant with the fastest access to data from other markets, news, and similar sour…

  3. comment
    Comment #43399067

    IntelligentCross Midpoint (a darkpool) is a better example, since it actually does matching periodically every couple of milliseconds [1]. IEX just introduces additional latency fo…

  4. comment
    Comment #43394234

    It's actually the other way around. As a big fund looking to trade a large number of shares in the public market, you'll quickly realize that the market tends to move away from you…

  5. comment
    Comment #40916762

    I have absolutely no idea how this works in Java, but in C++, there are a few reasons you need std::atomic here: 1. You need to make sure that modifying the producer/consumer posit…

  6. comment
    Comment #40910420

    It's not easy to get data structures like this right in C++. There are a couple of problems with your implementation of the queue. Memory accesses can be reordered by both the comp…

  7. comment
    Comment #33787981

    The most benefit comes from the fact that you end up with a lot less TLB misses, since single mapping covers a large chunk of memory. Predictable memory access pattern helps with c…

  8. comment
    Comment #33787366

    Thanks, cool stuff. Especially liblppreload.so described in [2] and [3]. I'll give it a try. Do you have any tips how to achieve the same for the stack?

  9. comment
    Comment #33786294

    The part about getting everything into hugepages sounds interesting. Any idea where can I find some resources on that? Most of what I was able to find only tell you how to do that …