0
我正在爲電影節的評委們審覈並投票選出電影。我想我可以通過將所有結果保存在一個XML文件中來最小化項目。然而,我的擔憂是,如果多名法官同時投票,是否會與正在寫入的XML文件發生衝突?多位用戶使用AJAX/PHP更新XML文件
這裏是我的架構思想:
<festival>
<teams>
<team id='*'>
<name></name>
<video>http://vimeo.com/####</video>
<ratings>
<judge id='%'>(1-7)</judge>
</ratings>
<nominations>
<judge id='%'>@</judge>
<nominations>
</team>
</teams>
<awards>
<award id='@'>Best Director</award>
</awards>
<judges>
<judge id='%'>
<name></name>
<email></email>
<password></password>
<lastVideoWatched></lastvideowatched>
</judge>
</judges>