开发者

Best Way To Create Sequential Document Editing System (Only one person can edit a document at a time)

开发者 https://www.devze.com 2023-01-30 09:27 出处:网络
Lots of words below, sorry - but I wanted to explain this situation well: I\'m in the process of creating a system that allows any logged in user to edit a single document, but I don\'t want more tha

Lots of words below, sorry - but I wanted to explain this situation well:

I'm in the process of creating a system that allows any logged in user to edit a single document, but I don't want more than one user to be able to edit that document at the same time.

(Just for reference, I plan to have an indefinite number of these documents on my website, and users can create new documents. Essentially, imagine Google Docs, but with only one user being able to edit a document at a time).

I currently have a JavaScript/AJAX/PHP solution that involves, for each document, a database-stored variable that holds the user id of the user who is currently editing that document. No other users can edit the document until that user is done, and the document

When a user is "done" editing (which means that they either closed the editing window or saved their changes), the document becomes availab开发者_开发问答le to any other user once again...or at least should in theory. For the app I'm developing, it's important that the document becomes available as soon as possible. That's not a problem if an editing user saves his or her changes, but is a problem if a user closes the editing window and doesn't save any changes.

My current setup, to account for the non-save case, is to do a periodic AJAX call, to a php page that essentially says, "I'm still editing. Give me two more minutes of editing time." So then, if the user closes the page, the document will become available to everyone within two minutes. That's too long for what I need though. I'd really like to make this as close to real time as possible (though a < 10 second delay wouldn't be awful).

These documents are publicly visible, and their statuses are displayed in list form. When a user loads the "view available documents" page, I need to do a query to check the state of all recent documents that should be shown, making documents with expired editing times available, and displaying them with the currently available ones.

Why this method is bad: When a ton of users use this web app simultaneously, it involves WAY too many db queries, and checks, and AJAX updates.

Is there a better way to do this? (I hope so!)

Other info: -I tried using window.unload (to send an AJAX call to an "I'm done editing" page), but there isn't enough time for the ajax call to execute. -I don't think that my hosting provider would allow the use of persistent PHP scripts (and I also don't have any experience with persistent php scripts). -Even if I could use a persistent PHP script, I'd be concerned about the processing involved if I had to run a ton of these scripts simultaneously. (100? 1000? More? I don't know how much processing power that could use.) -I'm not able to run cron jobs. -If I have my editing clients' "I'm still editing" AJAX script run every 10 seconds instead of every minute or so, that's going to be A LOT of AJAX calls per second if I have a lot of users, which would lead to a lot of db access, which wouldn't be great.

I realize that the needs I've presented here probably rule out a bunch of otherwise good potential solutions, but I'm curious whether anyone can think of any other possible methods of doing this.

Thanks!

Edit: (Adding a relevant response to a comment)

Unfortunately, these aren't actual files. They're sort of virtual compound files that are made up of individual contributions from users. Imagine a single page that, instead of being one single set of text was a set of serially-submitted (from top to bottom) segments of text that combine to make up the full document. Each user-submitted segment is short, and is stored individually in a database. --- Weird, I know, but helpful and necessary for this project.


If these are actual files, you can use the technique outlined in this question.

Then keep doing what you're doing, close the file on them if no change is made in 2 minutes, or whatever time you want to set.

Edit: Could you store the currently used documents in memory and access them from there? This would remove the need for numerous database calls and would be pretty quick. Every 30 seconds you could query the site to reset the document timer (in memory). The next person that has access to the file could do a check on this document timer and if it's > your predetermined amount of elapsed time you could give them access.

Very interesting problem!

0

精彩评论

暂无评论...
验证码 换一张
取 消