添加新文档时自动生成 ID

Auto-generate ID when adding new document

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

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

我已经通过尝试在原始操作失败时重新插入数据来解决。这是我在 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');
}

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

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

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) {

    }