How OpenClaw's Memory System Works
https://www.db0.ai/blog/how-openclaw-memory-works
#HackerNews #OpenClaw #Memory #System #Technology #MemoryManagement #AIDevelopment #HackerNews
How OpenClaw's Memory System Works
https://www.db0.ai/blog/how-openclaw-memory-works
#HackerNews #OpenClaw #Memory #System #Technology #MemoryManagement #AIDevelopment #HackerNews
Reference vs Value: The & Operator Mystery!
PHP's pass-by-reference vs JavaScript's object references - CONFUSING but important!
#php #javascript #phpvsjs #passbyreference #passbyvalue #references #memorymanagement #viralcoding #programmingconcepts #mindblown #gotchas #syntaxcomparison

Jemalloc Un-Abandoned by Meta
#HackerNews #Jemalloc #Meta #Abandonment #TechInfrastructure #OpenSource #MemoryManagement

In the previous article we explored how Go’s memory allocator manages heap memory — grabbing large arenas from the OS, dividing them into spans and size classes, and using a three-level hierarchy (mcache, mcentral, mheap) to make most allocations lock-free. A key detail was that each P (processor) gets its own memory cache. But we never really explained what a P is, or how the runtime decides which goroutine runs on which thread. That’s the scheduler’s job, and that’s what we’re exploring today.
A trip down a memory lane 😎:
“DOS Memory Management”, Michal Necasek (https://www.os2museum.com/wp/dos-memory-management/).
Via HN: https://news.ycombinator.com/item?id=47196864
#DOS #MSDOS #RetroComputing #MemoryManagement #PC #IBMPC #OldSkool #Nostalgia
Why is the first C++ (m)allocation always 72 KB?
https://joelsiks.com/posts/cpp-emergency-pool-72kb-allocation/
#HackerNews #C++ #MemoryManagement #Allocation72KB #ProgrammingInsights #HackerNews
OutOfMemoryError isn’t a memory problem.
It’s a reference problem.
Objects stay alive because references stay alive.
GC can’t free what’s still reachable.
Visit: https://blog.heaphero.io/java-outofmemoryerror-heap-space/
Fix references → Fix memory.
#Java #JVM #MemoryManagement #OutOfMemoryError
Người dùng Reddit chia sẻ thách thức khi chạy LLM 7B cục bộ: vấn đề bộ nhớ ngắn hạn khiến model hallucinate do thiếu ngữ cảnh ban đầu. Đã thử giải pháp tóm tắt bằng model 3B nhưng không hiệu quả. Bạn có kinh nghiệm nào về quản lý bộ nhớ dài hạn cho LLM?
#LLMs #MemoryManagement #LocalAI #VietnameseAI #TríTuệNhânTạo #QuảnLýBộNhớ
https://www.reddit.com/r/LocalLLaMA/comments/1qm6r2f/solving_memory_issues_for_llms/
Understanding C++ Ownership System
https://blog.aiono.dev/posts/understanding-c++-ownership-system.html
#HackerNews #C++ #Ownership #CPlusPlus #Programming #MemoryManagement #HackerNews