Tagged Questions

0
votes
1answer
29 views

Should I use SQLite for automatically build a list of banned IPs of comment spammers?

I am using a simple yet effective anti-spam system at a comments module which seems to be working flawlessly for more than a year now. Since it is capable of recognizing automated …
0
votes
3answers
37 views

java wrapper around log4j logger and java.util.logging

I am writing a library. The library can be used by applications that use log4j loggers and java.util.logging loggers. So, I wrote a quick wrapper class, that encapsulates both log …
0
votes
3answers
46 views

Generate unique key in Java to be used as primary key in Oracle tables.

I am trying to get a string of length 15 to be used as primary key in database tables. The following code in java returns some key with length 35 UUID.randomUUID().toString() C …
13
votes
7answers
201 views

Unit test for thread safe-ness?

I've written a class and many unit test, but I did not make it thread safe. Now, I want to make the class thread safe, but to prove it and use TDD, I want to write some failing un …
1
vote
2answers
48 views

How to create a thread-safe pool of objects?

In my server application (written in C#), I need to create a pool of same type of objects. I pull an object from pool when I need, and it goes back to pool when it is no longer nee …
2
votes
4answers
105 views

Load multiple copies of a shared library

I am running Linux, and I would like to be able to make parallel function calls into a shared library (.so) which is unfortunately not threadsafe (I am guessing it has global datas …
2
votes
5answers
79 views

Is Java’s TimeZone thread-safe?

I wanted my application to just have one TimeZone object which will be used by many SimpleDateFormat and Calendar objects from the other places concurrently. This is to avoid havi …
0
votes
4answers
94 views

Are inmutable objects always threadsafe?

It is safe to assume that working with or passing around an immutable object would always be threadsafe?
2
votes
2answers
42 views

Is it safe to dispose a JFrame from a different thread in Java?

Is it safe to call the dispose() method of a JFrame from a different thread (not the EDT)?
1
vote
1answer
35 views

Lockfree standard collections and tutorial or articles.

Does someone know of a good resource for the implementation (meaning source code) of lock-free usual data types. I'm thinking of Lists, Queues and so on? Locking implementations a …
0
votes
1answer
20 views

Is Gdiplus thread-safe?

I've perused the MSDN documentation and I couldn't find a statement one way or the other. What I'm interested in is: Can I call GdiplusStartup() on one thread and then use Gdipl …
1
vote
2answers
148 views

Is the following utility class thread-safe?

First let's look at the utility class (most javadoc has been removed to simply the example): public class ApplicationContextUtils { /** * The application context; care s …
2
votes
2answers
56 views

Accessing object members and atomicity

We know from the C# specification that reference read/writes are atomic. In a statement that accesses member of an object, will the reference also be accessed atomically? I think …
1
vote
2answers
31 views

popen - locks or not thread safe?

I've seen a few implementations of popen()/pclose(). They all used a static list of pids, and no locking: static int *pids; static int fds; if (!pids) { if ((fds = getdtable …
0
votes
1answer
27 views

Using static data access methods with the ADO.NET Entity Framework

Hi I am using the ADO.NET entity framework for the first time and the staticcode analysis is suggesting I change the following method to a static one as below. My question is sim …

1 2 3 4 5 15 next
15 30 50 per page