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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:37:53+00:00 2026-05-16T16:37:53+00:00

In my app a user can set the status of a Post to different

  • 0

In my app a user can set the status of a Post to different flags like ‘v’ – visible, ‘d’ – mark for delete etc.

These flags are set via controller actions.

I have a batch process that runs and cleans all the posts marked for delete.

Post.find(:all, :conditions => [‘status = ?’, ‘d’]).each do |p|
p.destroy
end

This batch process runs every x many minutes.

Let’s say a user marks the post with ‘d’ => batch process runs at some points => while the process is running the user marks the post as ‘v’. Now inside the batch process the record is already targeted for delete and will be when the do loop is done, but the flag has changed via the controller action.

Ideally, if this happens I would like to not delete that post in the batch process.

What’s the best way to handle this?

  • 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-05-16T16:37:54+00:00Added an answer on May 16, 2026 at 4:37 pm

    The way you described it, there is a race condition. — The user can mark the post v when it is already in the process of being deleted. And the user’s request will be ignored.

    Lots of ways to change this depending on your goals:

    1) Change from

    Post.find(:all, :conditions => ['status = ?', 'd']).each do |p| p.destroy end
    to
    Post.find(:all, :conditions => ['status = ?', 'd']).each do |p|
       p.reload
       p.destroy if p.status == 'd' 
    end
    

    This will minimize the window of time between the status being checked and the post deleted.

    2) Change the display of the posts to only show the posts if the status is not “d.” This will effectively speedup the deletion since others will have much less time to mark a to-be-deleted post as “v”

    3) To give people a longer period to change their minds, only run the batch job once a day, late at night. Once a post is marked as d (to-be-deleted), show the post in a special way to warn users that the post is about to be deleted. This gives them max time to undo the delete request.

    4) Never actually destroy the data. (DBMS storage is cheap.) When a post is marked for deletion, just change a flag and don’t show it again. This enables users to “undelete” the post whenever they want to–no deadlines to worry about, nor any race conditions.

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

Sidebar

Related Questions

I'm developing an App where the user can add Different logo (drawable) on a
In my app,user can select image from gallery and after that he can zoom
I'm developing web app that user can save his/her work to server. The data
Just as on StackOverflow, in my app a User can write Questions and can
I'm writing an app where a user can both create their own pages for
I'm developing an app where the user can take up to 3 photo's which
I'm playing around with django and built a small app where a user can
In my app, the user can choose to display any number of objects onto
I writing an app in python for google app engine where each user can
In my app, the user can save his input to disk. This is done

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.