ive activated azure account, created ny first asp mvc 3.0 project (just template) , deployed :). wonderfull
however im create small app (just learn azure) , have hit minor issue. heres want do: create mvc app displays music library , allow searching, sorting, add new albums, etc. theres proberbly 3000 albums.
what kind of storage should use , know of tutorial example how dó in c# mvc?
please note dó not want use sql azure, easy. need dig in , learn blob/table/? types.
i need sound recomendation on storage type should start studying, , more importantly should study :).
the windows azure platform training kit has few labs, under exploring windows azure storage. should give start understanding table , entity approach. pay specific attention partition , row keys. storage optimized colocated around partition key, , indexed within partition via row key. you'll need plan row key searching. if need search on multiple properties within table, you'll need consider either additional tables (each containing row key you'd search), or maybe nosql database mongodb (or relational database sql azure, said want avoid approach).
also, take @ blog post david pallman - has complete set of code snippets every single type of storage operation. save many hours of time try figure out ways interact table storage.
then, @ msdn post talks storage transactions, relevant when move beyond simple examples , shift focus production code.
Comments
Post a Comment