TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

An Afternoon of Code Golf in Lua to Achieve 4x Performance in Redis

33 pointsby paladin314159about 8 years ago

4 comments

paladin314159about 8 years ago
I really wonder why redis hasn't implemented HMINCRBY. Have run into that issue a bunch of times and the Github issue just doesn't convince me.
评论 #13833526 未加载
kortoxabout 8 years ago
Hi, I'm the author of the post. Happy to answer any questions or criticisms folks have.
评论 #13832198 未加载
评论 #13835618 未加载
评论 #13832065 未加载
partycoderabout 8 years ago
Running MONITOR in production can severely affect performance, by 50% per monitoring client according to the documentation.<p>twemproxy independently exposes some statistics, it&#x27;s probably safer to do it that way.
评论 #13833554 未加载
评论 #13833479 未加载
tdjabout 8 years ago
One common pattern I had to frequently use was HSET of the same key on multiple hashmaps and different values. Not quite HMSET, but MHSET was a good name for it.