logoalt Hacker News

tialaramexyesterday at 11:25 PM0 repliesview on HN

You probably have a point on linear search for assets (I haven't checked but I've assumed you're right about how it works in the released source)

There are some tradeoffs here, my instinct would be to bring hash tables into play and that's perhaps a mistake because it means you're doing fewer reads but more arithmetic and on some hardware that's a bad trade. But "linear search" is only the simplest and probably not the smartest option.