<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: MrCroxx</title><link>https://news.ycombinator.com/user?id=MrCroxx</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 12 Apr 2026 05:58:33 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=MrCroxx" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[Do We Still Need Tech Blogs in the Era of GenAI?]]></title><description><![CDATA[
<p>Article URL: <a href="https://blog.mrcroxx.com/posts/do-we-still-need-tech-blogs-in-the-era-of-gen-ai/">https://blog.mrcroxx.com/posts/do-we-still-need-tech-blogs-in-the-era-of-gen-ai/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46730893">https://news.ycombinator.com/item?id=46730893</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 23 Jan 2026 10:40:24 +0000</pubDate><link>https://blog.mrcroxx.com/posts/do-we-still-need-tech-blogs-in-the-era-of-gen-ai/</link><dc:creator>MrCroxx</dc:creator><comments>https://news.ycombinator.com/item?id=46730893</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46730893</guid></item><item><title><![CDATA[New comment by MrCroxx in "Foyer: A Hybrid Cache in Rust – Past, Present, and Future"]]></title><description><![CDATA[
<p>For those who may not know, over the past few months, I've been continuously developing and maintaining a hybrid cache library in Rust, Foyer[0].<p>However, from the very beginning until now, I haven’t had the chance to properly introduce this project through an article. On one hand, I’m not very skilled at writing in English, so I kept procrastinating. (Thanks to ChatGPT, I can focus more on the content rather than worrying about my limited English writing skill.) On the other hand, Foyer was evolving rapidly in its early stages, undergoing major refactoring almost every few months. As a result, it felt premature to formally introduce the project.<p>But now, Foyer has already gained more stars on Github than than the project it was originally inspired by — Facebook’s CacheLib[1]. This excites me and makes me worry even more about the future of Foyer. So, I think it's time to write a proper blog to introduce it.<p>[0]: <a href="https://github.com/foyer-rs/foyer" rel="nofollow">https://github.com/foyer-rs/foyer</a><p>[1]: <a href="https://github.com/facebook/cachelib" rel="nofollow">https://github.com/facebook/cachelib</a></p>
]]></description><pubDate>Mon, 20 Oct 2025 06:23:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=45640578</link><dc:creator>MrCroxx</dc:creator><comments>https://news.ycombinator.com/item?id=45640578</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45640578</guid></item><item><title><![CDATA[Foyer: A Hybrid Cache in Rust – Past, Present, and Future]]></title><description><![CDATA[
<p>Article URL: <a href="https://blog.mrcroxx.com/posts/foyer-a-hybrid-cache-in-rust-past-present-and-future/">https://blog.mrcroxx.com/posts/foyer-a-hybrid-cache-in-rust-past-present-and-future/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45640577">https://news.ycombinator.com/item?id=45640577</a></p>
<p>Points: 3</p>
<p># Comments: 1</p>
]]></description><pubDate>Mon, 20 Oct 2025 06:23:55 +0000</pubDate><link>https://blog.mrcroxx.com/posts/foyer-a-hybrid-cache-in-rust-past-present-and-future/</link><dc:creator>MrCroxx</dc:creator><comments>https://news.ycombinator.com/item?id=45640577</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45640577</guid></item><item><title><![CDATA[New comment by MrCroxx in "I built Foyer: a Rust hybrid cache that slashes S3 latency"]]></title><description><![CDATA[
<p>Hi, foyer's author here. The "zero-copy in-memory abstraction" is compared to Facebook's CacheLib.<p>CacheLib requires entries to be copied to the CacheLib managed memory when it's inserted. It simplified some design trade-offs, but may affect the overall throughput when in-memory cache is involved more than nvm cache. FYI: <a href="https://cachelib.org/docs/Cache_Library_User_Guides/Write_data_to_cache" rel="nofollow">https://cachelib.org/docs/Cache_Library_User_Guides/Write_da...</a><p>Foyer only requries entries to be serialized/deserialized when writing/reading from disk. The in-memory cache doesn't force a deep memory copy.</p>
]]></description><pubDate>Sun, 28 Sep 2025 05:47:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=45402058</link><dc:creator>MrCroxx</dc:creator><comments>https://news.ycombinator.com/item?id=45402058</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45402058</guid></item><item><title><![CDATA[New comment by MrCroxx in "I built Foyer: a Rust hybrid cache that slashes S3 latency"]]></title><description><![CDATA[
<p>Hi, foyer's author here. Page cache and swap are indeed good general proposed strategies and continuously evoluting. There are several reasons why foyer manages memory and disk control by itself rather than directly utilizing these mechanisms:<p>1. Leverage asynchronous capabilities: Foyer exposes async interfaces so that while waiting for IO and other operations, the worker can still perform other tasks, thereby increasing overall throughput. If swap is used, a page fault will cause synchronous waiting, blocking the worker thread and resulting in performance degradation.<p>2. Fine-grained control: As a dedicated cache system, foyer has a better understanding than a general proposed system like the operating system's page cache of which data should be cached and which should not. This is also why foyer has supported direct I/O to avoid duplication of abilities with the page cache since day one. Foyer can use its own strategies to know earlier when data should be cached or evicted.</p>
]]></description><pubDate>Sun, 28 Sep 2025 05:37:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=45402024</link><dc:creator>MrCroxx</dc:creator><comments>https://news.ycombinator.com/item?id=45402024</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45402024</guid></item><item><title><![CDATA[New comment by MrCroxx in "Zig's new LinkedList API (it's time to learn fieldParentPtr)"]]></title><description><![CDATA[
<p>Agreed. Intrusive data structures are good for implementing multi-container data structures with lower allocation overhead. And they are widely used than expected. E.g. LRU is a classic multi-container problem.</p>
]]></description><pubDate>Mon, 14 Apr 2025 14:34:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=43681773</link><dc:creator>MrCroxx</dc:creator><comments>https://news.ycombinator.com/item?id=43681773</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43681773</guid></item><item><title><![CDATA[New comment by MrCroxx in "A lightweight unified metrics library in Rust for various metrics system"]]></title><description><![CDATA[
<p>While I was developing [foyer](<a href="https://github.com/foyer-rs/foyer">https://github.com/foyer-rs/foyer</a>), which is a hybrid in-memory and disk cache project in Rust. Some users asked for metrics system support for both the Prometheus ecosystem and OpenTelemetry ecosystem. After investigating and trying out some libs, I decided to develop a new lib that is lightweight, support both Prometheus and OpenTelemety, and even different version of `prometheus`, `prometheus-client` and `opentelemetry` crates for various users.</p>
]]></description><pubDate>Sat, 12 Apr 2025 08:13:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=43662423</link><dc:creator>MrCroxx</dc:creator><comments>https://news.ycombinator.com/item?id=43662423</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43662423</guid></item><item><title><![CDATA[Show HN: Mixtrics - A lightweight metrics lib in Rust for various metrics system]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/foyer-rs/mixtrics">https://github.com/foyer-rs/mixtrics</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=43662422">https://news.ycombinator.com/item?id=43662422</a></p>
<p>Points: 4</p>
<p># Comments: 1</p>
]]></description><pubDate>Sat, 12 Apr 2025 08:13:58 +0000</pubDate><link>https://github.com/foyer-rs/mixtrics</link><dc:creator>MrCroxx</dc:creator><comments>https://news.ycombinator.com/item?id=43662422</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43662422</guid></item><item><title><![CDATA[New comment by MrCroxx in "Apple pulls data protection tool after UK government security row"]]></title><description><![CDATA[
<p>I'm drunk. No offense. Why our world ends up like this.</p>
]]></description><pubDate>Sat, 22 Feb 2025 14:42:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=43139311</link><dc:creator>MrCroxx</dc:creator><comments>https://news.ycombinator.com/item?id=43139311</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43139311</guid></item></channel></rss>