raccoonone's comments

raccoonone | 2 years ago | on: Are you sure you want to use MMAP in your DBMS?

I wrote redb (https://github.com/cberner/redb) using mmap, initially. However, I later removed it and switched to read()/write() with my own user space cache. I'm sure it's not as good as the OS page cache, but the difference was only 1.2-1.5x performance on the benchmarks I cared about, and the cache is less than 500 lines of code. Also, by removing mmap() I was able to remove all the unsafe code associated with it, so now redb is memory-safe.

raccoonone | 8 years ago | on: Scaling Kubernetes to 2,500 Nodes

Yep, we've been using GPUs for quite a while (even before the alpha support in Kube), both the K80s in Azure and some Pascals in our own clusters. With the support in Kube now it's quite seamless.

raccoonone | 14 years ago | on: Optimizing Solr (Or How To 7x Your Search Speed)

Yep, totally agree with this. Last month we spent an hour or two going through the schema and removing any fields that didn't need to be stored, and making sure that only fields which we actually do queries on had index=true. I didn't test before and after results, but qualitatively it seemed to be faster afterwards.

raccoonone | 14 years ago | on: Hacking the Used Car Purchase

Well, if you used our awesome car search engine (carsabi.com), you wouldn't be spending 20hrs =P

In all seriousness though, if you spend 20hrs to save $2k, you're making $100/hr, which is better than most programmers make, even.

raccoonone | 14 years ago | on: Show HN: Craigslist Car Search

Ah yes, looks like we need to set some kind of sensible default for the maximum price.

Would you prefer to just bookmark searches, or login and be able to "save" them? (have them show up as separate tabs next to Saved Listings, or something like that)

raccoonone | 14 years ago | on: Show HN: Craigslist Car Search

Definitely, we'd like to add more comparison as to how good of a deal you're getting, but just haven't had time yet.

The hatchback/sedan/... is on our roadmap too. It's a little tricky, because often sellers don't post it explicitly, and doing computer vision on the pictures, would be very hard.

raccoonone | 14 years ago | on: Show HN: Craigslist Car Search

Ya, adding color search is definitely on our roadmap. It'll be pretty easy for dealership cars, since they usually list it, and for Craigslist hopefully some blob detection will work.
page 1