Posts by Keyo • 176 points
4 posts
-
10
votes1
answer2562
viewsA: Main differences between Mongodb and Redis
Redis uses a different paradigm than Mongodb. Redis uses the paradigm value key for the storage of data. Basically, it is a "giant array" that stays in the server memory, you ask Redis to "give me…
-
0
votes2
answers923
viewsA: jQuery scroll does not work on Chrome in the rewind to previous page
This behavior depends on the browser and the version of jQuery you are using (1.4 and higher work differently than older versions). There was a discussion on this a while ago at Stackoverflow, I…
-
4
votes1
answer135
viewsA: DB Nosql, when to use?
You need to be careful if you want to think about adopting Nosql. The main question you should answer is "what kind of data do I want to store?" and then "what is the volume of these data?". Nosql…
-
2
votes2
answers206
viewsA: Messagebox error
In the new Windows Phone Apis 8.1 you need to use await MessageDialog().ShowAsync() from Windows.UI.Popups. In your case, it would look like this: var mensagem = new MessageDialog("Sua mensagem");…