View a markdown version of this page

$Bitor - Amazon DocumentDB

Terjemahan disediakan oleh mesin penerjemah. Jika konten terjemahan yang diberikan bertentangan dengan versi bahasa Inggris aslinya, utamakan versi bahasa Inggris.

$Bitor

Baru dari versi 8.0.1.

$bitOrOperator di Amazon DocumentDB melakukan operasi OR bitwise pada nilai integer atau panjang.

Parameter

  • expressions: Array dua atau lebih ekspresi, yang dapat diselesaikan menjadi bilangan bulat atau panjang.

Contoh (MongoDB Shell)

Contoh berikut menunjukkan cara menggunakan $bitOr operator untuk melakukan bitwise OR pada dua bidang.

Buat dokumen sampel

db.flags.insertMany([ {_id: 1, a: 13, b: 10}, {_id: 2, a: 7, b: 5}, {_id: 3, a: 15, b: 9} ]);

Contoh kueri

db.flags.aggregate([ { $project: { result: { $bitOr: ["$a", "$b"] } } } ]);

Keluaran

[ {_id: 1, result: 15}, {_id: 2, result: 7}, {_id: 3, result: 15} ]

Dalam biner: 13 (1101) ATAU 10 (1010) = 15 (1111); 7 (0111) ATAU 5 (0101) = 7 (0111); 15 (1111) ATAU 9 (1001) = 15 (1111).

Contoh kode

Untuk melihat contoh kode untuk menggunakan $bitOr operator, pilih tab untuk bahasa yang ingin Anda gunakan:

Node.js
const { MongoClient } = require('mongodb'); async function example() { const client = new MongoClient('mongodb://<username>:<password>@<cluster-endpoint>:27017/?tls=true&tlsCAFile=global-bundle.pem&replicaSet=rs0&readPreference=secondaryPreferred&retryWrites=false'); try { await client.connect(); const db = client.db('test'); const collection = db.collection('flags'); const result = await collection.aggregate([ { $project: { result: { $bitOr: ["$a", "$b"] } } } ]).toArray(); console.log(result); } finally { await client.close(); } } example();
Python
from pymongo import MongoClient def example(): client = MongoClient('mongodb://<username>:<password>@<cluster-endpoint>:27017/?tls=true&tlsCAFile=global-bundle.pem&replicaSet=rs0&readPreference=secondaryPreferred&retryWrites=false') try: db = client['test'] collection = db['flags'] result = list(collection.aggregate([ {'$project': {'result': {'$bitOr': ['$a', '$b']}}} ])) print(result) finally: client.close() example()