Tagged Questions
The thread-safe tag has no wiki summary.
10
votes
2answers
219 views
Thread-safe Priority Queue for Delphi?
I'm looking for a priority queue implemented in Delphi that would work well in a multi-threaded environment.
Ideally lock-free, or designed for multi-threaded inserts/deletes with something better ...
7
votes
5answers
267 views
Is a Django session thread safe?
I am storing a dictionary in a Django Session which is accessible by multiple threads. All threads can update that dictionary, threads also get values from dictionary in order to run the process. I ...
6
votes
1answer
200 views
is Magento thread-safe?
Is anyone using Magento with Apache worker MPM?
I've read conflicting reports of stability and security using worker instead of prefork, but have also read that worker is much faster than prefork.
5
votes
3answers
262 views
Optimal strategy to make a C++ hash table, thread safe
(I am interested in design of implementation NOT a readymade construct that will do it all.)
Suppose we have a class HashTable (not hash-map implemented as a tree but hash-table)
and say there are ...
4
votes
1answer
65 views
What does thread safe mean in php context? [closed]
Possible Duplicate:
What is thread safe or non thread safe in PHP
What does it mean when something is or is not thread safe?
For example, setlocale() in php is not thread safe:
The ...
4
votes
2answers
602 views
C# ASP.NET Thread Safe static read only field
I have the following code in my ASP.NET project
public sealed class IoC
{
private static readonly IDependencyResolver resolver =
Service.Get("IDependencyResolver") as IDependencyResolver;
...
3
votes
1answer
129 views
Publishing Non-Thread Safe Object Fields in a Thread-Safe Manner
I've got a problem with Java concurrency. Yes, I looked at questions with almost the exact same title, but they all seemed to be asking subtly different things. Yes, I've read Java Concurrency in ...
3
votes
4answers
566 views
Thread safe logging class implementation
Would the following be the correct way to implement a fairly straightforward thread-safe logging class?
I know that I never explicitly close the TextWriter, would that be a problem?
When I ...
3
votes
1answer
538 views
What thread-safe collection classes are available in Silverlight 4?
I am developing an application framework that will be utilized by Silverlight on the client side and .NET 4 on the server side. Internally, the framework has dictionary and queue data structures where ...
3
votes
1answer
414 views
Is NHibernate SessionFactory thread safe
According to documentation the SessionFactory should be thread safe:
An ISessionFactory is threadsafe, many threads can access it concurrently and request ISessions.
I'm looking at the ...
3
votes
6answers
1k views
Pattern for lazy thread-safe singleton instantiation in java
the lazy thread-safe singleton instantion is kinda not easy to understand to every coder, so i wanted to create a class in our enterprise framework that would do the job.
What do you think about it? ...
3
votes
4answers
4k views
C# making dictionary access thread-safe? [closed]
Possible Duplicate:
What’s the best way of implementing a thread-safe Dictionary in .NET?
Possible Duplicate:
What’s the best way of implementing a thread-safe Dictionary ...
3
votes
2answers
419 views
2
votes
6answers
100 views
is class instance inside static method thread safe
I have a static method like follows
public static void foo(){
final ClassA a = new ClassA();
}
I have two hash maps inside classA.
Are those hash map thread safe...?
2
votes
3answers
121 views
How to set/get string in Java safely?
I have read Java String class is immutable and thread-safe but I am still confused about whether the reference assignment for Strings is thread-safe or not.
First question: If thread A calls ...
2
votes
3answers
80 views
Thread-safe access to static collection
I am creating a class that will have a Key-Value pairing of some sort. Currently, I have something similar to the following:
private static Dictionary<Type, List<PropertyInfo>> ...
2
votes
2answers
75 views
Any existing ring buffers in .NET that can have multiple consumers?
Wondering if there is an existing ring buffer in .NET that has only one writer, but can have multiple consumers?
Needless to say, there are multiple threads reading from this buffer (but only one ...
2
votes
6answers
118 views
Understanding synchronized block in Java
I am trying to understand the concept of synchronizing on an object. Using this example from the Java Cert Book, can you help me understand the difference in behavior between the following 2 pieces of ...
2
votes
4answers
140 views
how to make windows control thread safe
I have a windows.form.userControl class and at run time i want to add some linklabels dynamically. When I apply this code snippet inside Load method it work perfectly.
for (int i = 0; i < 10; ...
2
votes
3answers
165 views
Is this List<T> property thread-safe?
private List<T> _T;
private readonly object _syncLock = new object();
private List<T> MyT
{
get
{
lock (_syncLock)
return ...
2
votes
4answers
225 views
Is open thread safe?
Is it okay if two threads call open() at the same time? How would one find the answer to this question?
2
votes
2answers
317 views
Is there an open source thread safe C++ object pool implementation?
Greetings,
I need to create a pool of socket connections which will be served to multiple worker threads. Is there a thread safe object pool implementation with functionality similar to Apache ...
2
votes
3answers
481 views
How to call a JavaScript callback from a Java applet thread?
I have some long-running Java code running in a thread started by a Java applet. As soon as the code has finished, it has information for the user. I'd like to pass this information to a JavaScript ...
2
votes
1answer
111 views
notify listener inside or outside inner synchronization
I am struggling with a decision. I am writing a thread-safe library/API. Listeners can be registered, so the client is notified when something interesting happens. Which of the two implementations is ...
1
vote
4answers
39 views
Does volatile mean it is thread safe
In Java, when we want to ensure that compiler should not do optimization by keeping a local copy of a variable, then we make the variable volatile. Using the variable as volatile ensures that the ...
1
vote
4answers
88 views
Is std::vector or boost::vector thread safe?
I have multiple threads simultaneously calling push_back() on a shared object of std::vector. Is std::vector thread safe? Or do I need to implement the mechanism myself to make it thread safe?
I want ...
1
vote
1answer
63 views
WCF methods sharing a dictionary
I'm creating a WCF Service Library and I have a question regarding thread-safety consuming a method inside this library, here is the full implementation that I have until now.
namespace ...
1
vote
2answers
126 views
Ruby's speed of threads
I have the following code to thread-safe write into a file
threads = []
@@lock_flag = 0
@@write_flag = 0
def add_to_file
old_i = 0
File.open( "numbers.txt", "r" ) { |f| old_i = f.read.to_i }
...
1
vote
1answer
89 views
Thread Safe Python Property/Attribute?
I have code like the following:
class SomeSharedData(object):
def __init__(self):
self._lock = RLock()
self._errors = 0
@property
def errors(self):
with ...
1
vote
1answer
93 views
Is callFromThread threadsafe
I looked at the code for callFromThread. It's appending all the callables into threadCallQueue list. If multiple threads call callFromThread, how can callFromThread be thread-safe? In other words, ...
1
vote
1answer
188 views
Thread-safe caching in ASP.NET HttpModules
Here's the scenario
I have an ASP.NET 4.0 application which has a LOT of legacy URL rewrites. I want to build an HTTP module that will look at a database of these rewrites and do a 301 redirect if ...
1
vote
1answer
56 views
Is this GUI threadsafe (Using Swing)?
I have the following code in my constructor for my GUI
search.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
//do stuff
}});
...
1
vote
5answers
1k views
Thread-safe List<T> property
I want an implementation of List<T> as a property which can be used thread-safely without any doubt.
Something like this:
private List<T> _list;
private List<T> MyT
{
get { // ...
1
vote
1answer
170 views
Is System.ServiceModel.Channels.BufferManager thread-safe?
I create a buffer manager through static member of BufferManager.CreateBufferManager. This new created BufferManager is used by multiple threads.
Should I use a lock with TakeBuffer() and ...
1
vote
4answers
1k views
How to read combobox from a thread other than the thread it was created on?
I am trying to read a combobox.Text from a thread other than the thread it was created on but I am getting the error:
An unhandled exception of type
'System.InvalidOperationException'
occurred ...
1
vote
4answers
183 views
How do I deep copy an irregular 2D array threadsafely
I have stumbled upon an annoyance as I was writing a Java class; I couldn't figure out how to make copying a 2 dimensional array thread safe. This is the simple version of the class:
public class ...
1
vote
2answers
252 views
Is shelve in Python thread safe?
Is shelve in Python used for data persistence thread safe? If not, what's a good alternative?
Thanks! :-)
1
vote
1answer
140 views
What thread-safe data persistence objects are available in Python for data persistence?
What Python thread-safe data persistence objects are available for data persistence? I need something that's similar to shelve. It's best if I can just change only a little bit of code instead of ...
1
vote
2answers
454 views
Thread-safe replacement of ObservableCollection<T> in C# 4.0, with safe enumeration
I have an ObservableCollection<T> in one of my projects and I need to make access thread-safe.
In particular, I need to have a thread-safe enumerator. This means, during iterating over the ...
1
vote
4answers
162 views
Are C++ template-functions threadsafe?
Googling don't find anything. Are they created at point of use, or are the generic parts shared between instances?
(Same for template classes?)
0
votes
3answers
51 views
Want to create a synchronized data download in servlet action
I want to create a servlet method like below. In this method I want to perform some data dwnload.So if request for data download comes I just do the download. If already a download is going on I want ...
0
votes
1answer
57 views
Can't get items in a ListView cross-thread
My background worker needs to loop through each item in a ListView. However I can't do this:
foreach (ListViewItem Item in List.Items)
{
because it's a cross thread operation.
I also can't ...
0
votes
1answer
96 views
Android Ksoap2 not able to retreive the Data in the 4th Activity but able to fetch the data in the begining activity
I written an App which fetches data from server side, I am not able fetch the data in my 4 activity of my App . And i have written a separate app where it fetches and displays the data in first ...
0
votes
1answer
82 views
If array is thread safe, what the problem with this Function?
I am totally lost with the things that is happening with my code.It make me to think & get clear with Array's thread Safe concept. Is NSMutableArray OR NSMutableDictionary Thread Safe ?
While my ...
0
votes
1answer
81 views
VB.NET 2.0 - StackOverflowException when using Thread Safe calls to Windows Forms Controls
I have a Windows Forms app that, unfortunately, must make calls to controls from a second thread. I've been using the thread-safe pattern described on the ...
0
votes
1answer
61 views
What image processing Library should I use
I have been reading What is the best image manipulation library? And tried a few libraries and are now looking for inputs on what is the best for our need. I will start by describing our current ...
0
votes
2answers
111 views
final fields and thread-safety
Should it be all fields, including super-fields, of a purposively immutable java class 'final' in order to be thread-safe or is it enough to have no modifier methods?
Suppose I have a POJO with ...
0
votes
4answers
70 views
Thread unique data
I need to maintain a hashmap which should be public to all the threads executing.
For example the hashmap updated by one particular thread should be available to the other threads also and vice versa. ...
0
votes
4answers
532 views
How to make a static Calendar thread safe
I'd like to use a Calendar for some static methods and use a static field:
private static Calendar calendar = Calendar.getInstance();
Now I read java.util.Calendar isn't thread safe. How can I make ...
0
votes
3answers
153 views
Limit method calls per second(s) (refuse when limit reached)
I have a method that does some IO, and I'd like to limit the calls (per second) to this method to avoid the backend to get bursts of concurrent requests it can't handle.
If the requirement came ...