$toHashedIndexKey(집계)
정의
구문
$toHashedIndexKey
의 구문은 다음과 같습니다:
{ $toHashedIndexKey: <key or string to hash> }
예시
$toHashedIndexKey
를 사용하여 집계 파이프라인에서 문자열의 해시된 값을 계산할 수 있습니다. 이 예에서는 문자열 "string to hash"
의 해시된 값을 계산합니다.
db.aggregate( [ { $documents: [ { val: "string to hash" } ] }, { $addFields: { hashedVal: { $toHashedIndexKey: "$val" } } } ] )
출력 예시:
[ { val: 'string to hash', hashedVal: Long("763543691661428748") } ]