Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
mhahn
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
mhahn
1y ago
I looked at using turso embedded replicas for a realtime collaboration project and one downside was that each sync operation was fairly expensive. The minimum payload size is 4KB IIRC because it needs to sync the sqlite frame. Then they cha
2.
▲
by
mhahn
10y ago
I've only read this and the Definitive Guide to ES. "Relevant Search" is more focused on working through how to tune search results and understand why things are happening and how you can make them work in your favor. They wo
3.
▲
by
mhahn
10y ago
Awesome book. I read the pre-release and it was a great deep dive into various topics that will help improve your search application. I highly recommend for anyone who is working with Elasticsearch (I think they also have a Solr appendix, b
4.
▲
by
mhahn
11y ago
I use Protobufs for my startup and it has saved us an incredible amount of time building out iOS, Android, and Web clients. With a small team, any time we can shave by not having to re-write the modeling layer in all of these languages is a
5.
▲
by
mhahn
11y ago
I'm curious if Google has a common envelope they send all service messages with. Ie. A common way of specifying pagination parameters, auth tokens etc. when sending protobuf messages between services. I've been using protobufs for
6.
▲
by
mhahn
12y ago
1. https://www.eventbrite.com/reserved-seating/ 2. your event pages look identical
7.
▲
by
mhahn
12y ago
all the overachieving engineers working on a saturday...
8.
▲
by
mhahn
13y ago
this would be awesome if it had an integration with instacart, ie. you send me the groceries every week
9.
▲
by
mhahn
13y ago
solid list, I would also add that it is extremely useful (I would argue necessary) to use vagrant ( http://www.vagrantup.com/ ) to manage your development environment.
10.
▲
by
mhahn
14y ago
if len(request.pipeline): you want to execute only if it has a length. cool though, I am using pipelines for something at work and read this post and realized I was executing even if there was nothing to execute!
11.
▲
by
mhahn
14y ago
I would argue that it is more readable to do: if request.pipeline.command_stack: request.pipeline.execute() rather than if len(request.pipeline) > 0: request.pipeline.execute() thoughts?