2
votes
3answers
68 views
How does one start a thread in Clojure?
I've read a lot about how great Clojure is when it comes to concurrency, but none of the tutorials I've read actually explain how to create a thread. Do you just do (.start (Thread …
0
votes
7answers
76 views
How to force multiple commands to execute in same threading timeslice?
I have a C# app that needs to do a hot swap of a data input stream to a new handler class without breaking the data stream.
To do this, I have to perform multiple steps in a singl …
2
votes
5answers
134 views
Concurrent map/foreach in scala
I have an iteration vals: Iterable[T] and a long-running function without any relevant side effects: f: (T => Unit). Right now this is applied to vals in the obvious way:
vals.for …
0
votes
1answer
27 views
LINQ To SQL exception with Attach(): Cannot add an entity with a key that is alredy in use
Consider this typical disconnected scenario:
load a Customer object from SQL Server using LINQ To SQL
user edits the entity, and the presentation tier sends back the entity modi …
9
votes
5answers
172 views
Unit testing real-time / concurrent software
The classical unit testing is basically just putting x in and expecting y out, and automating that process. So it's good for testing anything that doesn't involve time. But then, m …
3
votes
3answers
58 views
Spring: Singleton/session scopes and concurrency
Does singleton/session scopes of Spring beans require that access to all its fields must be synchronized? Say through "synchronized" keyword or using some classes from package "jav …
1
vote
1answer
81 views
High-level multithreading/concurrency abstractions for .NET
I just wondered why, unlike Scala, F# or Haskell, the basic .NET framework (as available in C# or VB) seems to have very little native support for higher level concurrency patterns …
3
votes
2answers
119 views
Is it possible to receive a result from one of a number of goroutines in Go?
I've only just recently learned about Google's programming language, Go. I've been intrigued by its offered support for concurrency, and set out to learn more about it. However, …
0
votes
1answer
64 views
Python: Architecture for url polling and posting
I have a simple problem. I have to fetch a url (about once a minute), check if there is any new content, and if there is, post it to another url.
I have a working system with a cr …
1
vote
2answers
38 views
NHibernate concurrency / cache problem
I have two applications running on a machine, where NHibernate is used as an ORM. One app is managing objects (CRUD operations), while the other is processing the objects (get, pro …
0
votes
1answer
27 views
can a berkeley database be opened and accessed from multiple programs at the same time?
Hi,
according to the Berkeley documentation the Transactional (TS) and the Concurrent Datastore version of the Database, multiple threads may access (and change) the database.
Do …
5
votes
1answer
122 views
Server programming with Clojure
How to implement 10k connections echo server in Clojure?
clojure.contrib.server-socket is not the answer since it crates a new OS thread for every connection.
1
vote
3answers
45 views
Storing Record Lock Tokens in ASP.NET
In the application that I'm currently working on, it is possible for multiple users to want to edit something at the same time which means that we need to implement optimistic lock …
-1
votes
2answers
51 views
Need help with web application settings
Hi all expert,
Pls give me the solutions for this two problem, which i was asked recently in interview.
Prob1: Suppose I have application with 10 admin, so they can change the d …
1
vote
3answers
50 views
.Net Concurrent Programming Books/Resources?
What books/resources have people found useful on the topic for .Net?
