1

我正在运行Coldfusion8/MySQL 5.0.88并有带有 id 的表,这些表是随机字符串 az 0-9

我想在表中创建新记录时避免重复条目,但我不确定如何正确设置它。

这是我所拥有的:

<cfset variables.listOfAppIds = "">

<!--- get all ids --->
<cfquery datasource="db" name="app_ids">
    SELECT app_id FROM apps
</cfquery>

<!--- create comma-separated list --->
<cfloop query="app_ids">
    <cfset variables.listOfAppIds = variables.listOfAppIds & "," & app_ids.app_id>
</cfloop>

<!--- create random string and test if it is in listOfAppIds --->
<cfloop condition="#ListFindNoCase(variables.listOfAppIds, variables.rndString, ',')#">
    <cfset variables.stringLength = 10>
    <cfset variables.stringList = "0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z">
    <cfset variables.rndString = "">
    <cfloop from="1" to="#variables.stringLength#" index="i">
        <cfset variables.rndNum = RandRange(1, listlen(variables.stringList))>
        <cfset variables.rndString = variables.rndString & listGetAt(variables.stringlist, variables.rndNum)>
    </cfloop>
    <cfset variables.current_appId = variables.rndString>
</cfloop>

问题:
我不确定我是否使用while-loop正确。这会确保没有找到重复项吗?

感谢帮助!

4

1 回答 1

5

我会重新考虑这种方法。您可以使用 GUID,然后根本不检查(很多应用程序都会这样做)。

或者创建新的随机 ID,然后查询数据库以查看是否有冲突。这样,数据库就会为您处理相同的逻辑。那么你的逻辑是:

collision=true;
while (collision=true) {
    newID=RandomIdFunction();
    SELECT app_id FROM apps where app_id = newID;
    if query had no rows, set collision=false;
}

随着数据库填满,冲突的可能性会变得更高,这将变得更慢,这就是为什么如果可以的话我可能会使用 GUID 方法。

于 2012-09-24T10:06:42.693 回答