A semaphore is a programming concept that is frequently used to solve multi-threading problems. My question to the community:
What is a semaphore and how do you use it?
|
A semaphore is a programming concept that is frequently used to solve multi-threading problems. My question to the community: What is a semaphore and how do you use it? |
|||
|
|
Think of semaphores as bouncers at a nightclub. There are a dedicated number of people that are allowed in the club at once. If the club is full no one is allowed to enter, but as soon as one person leaves another person might enter. It's simply a way to limit the number of consumers for a specific resource. For example, to limit the number of simultaneous calls to a database in an application. Here is a very pedagogic example in C# :-)
|
||||
|
|
|
Good article on Mutex's and Semaphores - what makes them different, and why they might or might not be used given various conditions. |
|||||
|
|
Mutex: exclusive-member access to a resource Semaphore: n-member access to a resource That is, a mutex can be used to syncronize access to a counter, file, database, etc. A sempahore can do the same thing but supports a fixed number of simultaneous callers. For example, I can wrap my database calls in a semaphore(3) so that my multithreaded app will hit the database with at most 3 simultaneous connections. All attempts will block until one of the three slots opens up. They make things like doing naive throttling really, really easy. |
|||
|
|
Semaphore can also be used as a ... semaphore. For example if you have multiple process enqueuing data to a queue, and only one task consuming data from the queue. If you don't want your consuming task to constantly poll the queue for available data, you can use semaphore. Here the semaphore is not used as an exclusion mechanism, but as a signaling mechanism. The consuming task is waiting on the semaphore The producing task are posting on the semaphore. This way the consuming task is running when and only when there is data to be dequeued |
|||
|
|
|
@Craig:
This is not restricted to only one thread. A semaphore can be configured to allow a fixed number of threads to access a resource. |
|||
|
|
|
A semaphore is an object containing a natural number (i.e. a integer greater or equal to zero) on which two modifying operations are defined. One operation, Because the natural number 0 cannot be decreased, calling As mentioned in other answers, semaphores can be used to restrict access to a certain resource to a maximum (but variable) number of processes. |
|||
|
|
|
A hardware or software flag. In multi tasking systems , a semaphore is as variable with a value that indicates the status of a common resource.A process needing the resource checks the semaphore to determine the resources status and then decides how to proceed. |
|||
|
|
|
https://www.youtube.com/watch?v=VQFJQJGmixM Should give you basic idea of semaphore and mutes. it explains the concept in simplified terms. |
|||||||||
|
|
A semaphore is a way to lock a resource so that it is guaranteed that while a piece of code is executed, only this piece of code has access to that resource. This keeps two threads from concurrently accesing a resource, which can cause problems. |
|||||
|
|
This is an old question but one of the most interesting uses of semaphore is a read/write lock and it has not been explicitly mentioned. The r/w locks works in simple fashion: consume one permit for a reader and all permits for writers. Indeed, a trivial implementation of a r/w lock but requires metadata modification on read (actually twice) that can become a bottle neck, still significantly better than a mutex or lock. Another downside is that writers can be started rather easily as well unless the semaphore is a fair one or the writes acquire permits in multiple requests, in such case they need an explicit mutex between themselves. Further read: |
|||
|
|