我正在为电影节的评委编写剧本,以审查和投票给电影。我在想我可以通过将所有结果保存在一个 XML 文件中来最小化项目。然而,我担心的是,如果多个法官同时投票,是否会与同时写入的 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>