Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
121 views

Has the `message-passing/shared-state' dilemma (concurrency & distribution) taken form of a `Holywar'?

I'm not too well-informed about the state of the discussion about which model is better, so I would like to ask a pretty straight question: Does it look like two opposing views having really heatened ...
2
votes
5answers
130 views

What shared state distributed systems exist which can handle objects in the native language?

As far as I know there is Terracotta and Maglev. Are there any others?
1
vote
1answer
164 views

What is Shared State in an ASP.NET MVC Application?

In a recent Stackoverflow podcast (#59), Jeff Atwood mentions that Stackoverflow has some "shared state." I understand the general idea of shared state, but what exactly is shared state in the ...
0
votes
1answer
31 views

How do I implement shared state in an ASP.NET MVC 3 application?

I'm writing a basic RESTful service, and decided I'd use ASP.NET MVC 3 for the task. My application is going to be responsible for maintaining a persistent connection to a server per user (for now). I ...
0
votes
2answers
110 views

How share variables to the threads in Java?

My program will use threads, but some variables like a collection of links/pages, information about queries (if is updating or none) and some others informations(boolean fields, int fields, etc.) must ...
0
votes
2answers
108 views

Sharing static members between template instantiations? (impossible?)

I am doing something that is probably silly, but it would be nice if it worked. I am attempting to specialize types in a way that I need my own lookup structure that is essentially global (but ...