添加新文档时自动生成ID

时间:2015-03-10 16:00:03

标签: php database uniqueidentifier clusterpoint

我的项目使用ClusterPoint数据库,我想知道是否可以使用随机分配的ID将文档插入数据库。

This document seems to specify the "ID"但如果它已经存在怎么办?有没有更好的方法来生成唯一标识符。

2 个答案:

答案 0 :(得分:1)

如果原始操作失败,我通过尝试重新插入数据来解决问题。这是我在PHP中的方法:

function cpsInsert($cpsSimple, $data){
    for ($i = 0; $i < 3; $i++){
        try {
            $id = uniqid();
            $cpsSimple->insertSingle($id, $data);
            return $id;
        }catch(CPS_Exception $e){
            if($e->getCode() != 2626) throw $e;

            // will go for another attempt
        }
    }
    throw new Exception('Unable to generete unique ID');
}

我不确定这是否是最佳方法,但它确实有效。

答案 1 :(得分:1)

您可以通过对序列使用单独的doc并使用事务来安全地增加它来实现自动增量功能。当然它可能会影响摄取速度,因为每个插入都需要额外的往返才能使事务成功。

try {          
          // Begin transaction
          $cpsSimple->beginTransaction();
          // Retrieve sequence document with id "sequence"
          $seq_doc = $cpsSimple->retrieveSingle("sequence", DOC_TYPE_ARRAY);
          //in sequence doc we store last id in field 'last_doc_id'
          $new_id = ++$seq_doc['last_doc_id'];
          $cpsSimple->updateSingle("sequence", $seq_doc);
          //commit
          $cpsSimple->commitTransaction();
          //add new document with allocated new id
          $doc = array('field1' => 'value1', 'field2' => 'value2');
          $cpsSimple->insertSingle($new_id, $doc);
    } catch (CPS_Exception $e) {

    }