Viewing profile — JedMartin
JedMartin
HN member- Joined
- Tue, Nov 29, 2022, 11:31 AM UTC
- HN karma
- 54
- Public activity
- 9 items
- HN profile
- View on Hacker News ↗
About JedMartin
No profile information was provided.
Recent public activity
- comment
-
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…
-
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…
-
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…
-
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…
-
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…
-
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…
-
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?
-
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 …