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 7810673
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T03:52:14+00:00 2026-06-02T03:52:14+00:00

I have a simple server which does on-demand mirroring. Fetching is expensive (network latency,

  • 0

I have a simple server which does on-demand mirroring. Fetching is expensive (network latency, integrity check, (re)compression, etc.). Thus, I’d like to have one lock per url being fetched, so that:

  • Only one thread will be fetching a single file;
  • If another thread wants one of the files currently being fetched, it will block until the file is ready.

I initially though of doing something like:

# Globals
fetching = dict()
fetch_lock = threading.Lock()

...

lock = None
do_fetch = False
with fetch_lock:
    if url in fetching:
        lock = fetching[url]
    else:
        lock = threading.Lock()
        fetching[url] = lock
        do_fetch = True

# Race condition
lock.acquire()

if do_fetch:
    ...

with fetch_lock:
    lock.release()
    if do_fetch:
        del fetching[url]

# Serve file
...

The race condition is rather minor (a thread may try to access the file which isn’t yet in the cache), but I can’t find a way to solve it.

  • 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-02T03:52:15+00:00Added an answer on June 2, 2026 at 3:52 am

    To solve that issue you can grab the lock inside the critical section if you are creating it (nobody else will have it) and if the lock already exists then acquire it outside the critical section.

    with fetch_lock:
        if url in fetching:
            lock = fetching[url]
        else:
            lock = threading.Lock()
            fetching[url] = lock
            do_fetch = True
            lock.acquire()
    if not do_fetch:
        lock.acquire()
    

    That will solve the race condition there. Though, what i don’t understand is why the thread that creates the lock removes it from the lock table, then you can have a thread serving the file while a newer thread is fetching it. But that’s not what you asked.

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

Sidebar

Related Questions

It is usually noted that simple database systems which does not have server (e.g.
I have a simple jquery/ajax request to the server which returns the structure and
I have a pretty simple question which perhaps someone familiar with Server/Client design &
I have written a CSS server which does minimization and basic parsing/var replacement. The
I have created a simple database in SQL Server Express which consists of three
I have a simple database table (SQL Server 2008 R2 Express), which has a
I have a simple server in Sinatra, like require 'sinatra/base' class Server < Sinatra::Base
I have a simple client-server app on android. the android service communicates with the
I have a simple client/server setup. The server is in C and the client
Say I have a simple client/server scenario with one method: // client code $client

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.