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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T20:47:17+00:00 2026-06-11T20:47:17+00:00

Is there a Python equivalent to Ruby’s officer gem? It is a distributed locking

  • 0

Is there a Python equivalent to Ruby’s officer gem? It is a distributed locking server, basically allows you to have locks across a network rather than just between threads.

I’ve been looking at elock which has a Python library for it, however elock is unlicensed so we can’t really use it for commercial software (also it has more or less been abandoned).

Ideally the equivalent will fit into twisted, but that’s not necessary.

  • 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-11T20:47:18+00:00Added an answer on June 11, 2026 at 8:47 pm

    I ended up solving this by using memcached since it has atomic updates.

    The solution is fairly simple:

    import memcache
    
    mc = memcache.Client(hosts, debug=1)
    
    # to lock:
    def request_lock(key, timeout=300):
        if mc == None:
            raise Exception("Memcache is not connected!")
    
        # just store a "1" in that location - this is an atomic operation so if two
        # nodes request a lock at the same time, only one of them will get a True
        return mc.add(key, "1", timeout)
    
    # to unlock:
    def request_unlock(key):
        if mc == None:
            raise Exception("Memcache is not connected!")
    
        return mc.delete(key) > 0
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there Python/Django equivalent of Ruby on Rails x.days.from_now x.years.from_now Time.now + 7.days ???
Is there a python class equivalent to ruby's StringScanner class ? I Could hack
Is there a Ruby equivalent for Python's is? It tests whether two objects are
Is there any Ruby equivalent for Python's builtin zip function? If not, what is
Is there a Python equivalent for Ruby's define_method , which would allow dynamic generation
Is there a Python equivalent to Ruby symbols? If so then what is it?
Looking further into the differences between Python and Ruby, is there a Ruby equivalent
Is there a Python equivalent of PHP's mysql_real_escape_string ? I'm trying to insert some
Is there any python's Generator equivalent in JavaScript? PS: Python's Generator is very memory
Is there an equivalent in Python for PHP's call_user_func_array ?

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.