Hacker News new | ask | show | jobs
by wavemode 762 days ago
Simple. Just encode all of your app's data and logic as a massive lookup table, each bit of which is represented by an object that either doesn't exist (a zero) or is unauthorized to access (a one).

When you read a sequential series of keys (404 403 403 404 = 0110) it will either tell you the data you were looking for or the next key name to begin reading from.

1 comments

You can also perfectly parallellize those requests, making the operation highly efficient!