Hacker News new | ask | show | jobs
by jcrocholl 6009 days ago
My list is a fairly random sampling of the huge search space of available domain names. I'm planning to keep adding more names in the future, trying to strike a balance between good names (short but readable) and more names (requiring more storage). Fortunately, the App Engine Datastore has linear complexity for the number of query results, so adding more names doesn't slow down the searching.
1 comments

i'm surprised that you don't dynamically extend your database if you have a miss. did you try that? if so, i'm curious why it didn't work out.
Because we can't run DNS queries inside Google App Engine. Instead, I query the DNS results from my home computer and feed them into the datastore using remote_api.
ah, ok (thanks). did you see the recent post here about someone exposing dns over http? although i have no idea if you could call that either...