Badrish Chandramouli
Badrish Chandramouli
Not every code fragment you see in a repo is part of what goes into production. There are usually prototypes, test code, code for benchmarking, etc. that are there to...
Your findng is accurate, but the reason we have not addressed it is because there is a standard pattern we use to avoid this: ``` var status = sync-call if...
Thanks @mgravell - this is a great start! With a starting point like this, it should be possible to look closely and optimize it much further. I already see opportunities...
Yes, that is one important optimization. The other is to use VarLenBlittableAllocator if the keys and values are blittable -- instead of paying the cost of object serializer at all.
Need this in Tsavorite ...
Sorry, just saw this thread. Yes we world prefer to get these changes over to Garnet!
Could this pull request apply to Garnet as well (Tsavorite)?
Workaround would be to load the rdb into redis, scan the DB, and issue set operations on Garnet.
> By the looks of it, I may have a time slot to tackle this starting ~next week~ 👍 > > **UPDATE**: gotta postpone a bit. Up for grabs in...
Ideally, Garnet would have a native --restore-rdb switch that would read the RDB file and use GarnetApi to populate the database on startup without having to use a library to...