Aug 2024
19 Mon
20 Tue
21 Wed
22 Thu
23 Fri
24 Sat 11:00 AM – 01:30 PM IST
25 Sun
Accepting submissions
Not accepting submissions
JIT Compilers – Inside and OutTraditionally, programming languages are either interpreted with a bytecode VM, or compiled to machine code. JIT compilers somehow do both, blurring the lines between “interpreted” and “compiled”. How? more
|
The curious case of MongoDB cache evictionAt Gojek, we have a love-hate kinda relationship with document stores. In one such use case, the design of our entity model made sense that a document store (ahem, mongoDb) should be used. Now serving a write traffic of a whopping ~25k RPM, we were bound to hit a wall, and we ended up hitting a cache eviction wall. more
|
WasmEdge InternalsWe’ll be exploring the anatomy of the wasmedge runtime. Wasm has advanced a fair bit in the web embedding but what about non web embeddings? We’ll explore more about the .wat format, the lifecycle of a wasm module, and dabbling a bit about how wasm modules actually work in the wasmedge runtime. more
|