.net - Azure - Table Storage modeling -


is there reference how design table storage data? put in partition , in table? there principals follow(like er model in sql)?

in general, need ensure content-searching efficient. data stored based on partition key , indexed on row key. if, say, have app id partition key , customer id row key, you'd have fast searching customer. however: imagine having search customer's last name (another property). you'd need table scan within app's partition. might need second table map customer's last name (as row key) customer id (a property).

to see real-world guidance, take @ this msdn article.


Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c++ - Using OpenSSL in a multi-threaded application -

All overlapping substrings matching a java regex -