Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8213089
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T10:59:38+00:00 2026-06-07T10:59:38+00:00

My first thought was regarding SpinLock or Concurrent Collections Lock Will work here as

  • 0

My first thought was regarding SpinLock or Concurrent Collections
Lock Will work here as I tested, but it’s more expensive !

The Process here is based on Parallel Programming. And the task is running more than one in parallel.

During the SpinLock Version I encounter an error some times randomly saying similar to "Index out of range".

The SpinLock version which I wrote can’t do the job I wanted, Could any change be made on it to make it work ? or Isn’t it built for exactly related to this case ?

Any Info ?

Does it have any better alternative ?

This is what I did :

     lock (lckRelatz)
     {
         relatz.Add(st);
     }

And here is the SpinLock version – This is inside a method which is running in parallel :

        SpinLock spinLk = new SpinLock();
        bool gotLock = false;
        try
        {
            spinLk.Enter(ref gotLock);
            relatz.Add(st);
        }
        finally
        {
            if (gotLock)
                spinLk.Exit();
        }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T10:59:39+00:00Added an answer on June 7, 2026 at 10:59 am

    It seems like you are creating new SpinLock for each thread. That will not actually lock anything. You need to have one SpinLock and use that from all of your threads.

    But using a concurrent collection is even better solution. They are highly optimized and using them means you don’t have to worry about all the locking yourself.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

here's the main code at first I thought is was the message box but
Okay at first I thought this would be pretty straightforward. But I can't think
At first I thought I'm facing a very simple task. But now I realized
does the following integer arithmetic property hold? (m/n)/l == m/(n*l) At first I thought
So I thought I'd write my first codeigniter helper (still new to codeigniter somewhat).
Ok first of all, the unicorn avatars are hilarious. Seriously, I thought my account
I'm using $lang=$_SERVER['HTTP_ACCEPT_LANGUAGE']; to detect the language of the browser. At first, I thought
My first thoughts are Erlang, or Java, but I wanted to know from others
I have one question regarding unwanted extra jar files . First I had planned
I thought this was causing a Cartesian effect but the results always return exactly

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.