steder / words

Using Python to play a better game of Words with Friends
blog.penzilla.net
2 stars 1 forks source link

Persistance Layer #5

Open steder opened 12 years ago

steder commented 12 years ago

Once we have boards to solve we'll want to save these boards so that they don't have to be reentered every time we visit the page.

steder commented 12 years ago

The cool way to do this would be with client storage (LocalStorage).

Pros:

Cons

Probably will look into a hybrid approach like SQLite on the server and a local cache on the client with LocalStorage.