MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Come convertire BSON::Timestamp in ruby ​​time e viceversa

Puoi convertire un BSON::Timestamp a un BSON::ByteBuffer usando il #to_bson metodo.

Puoi quindi convertire il BSON::ByteBuffer a un numero intero (#get_int64 ) che rappresenta il numero di millisecondi dall'epoca.

Quindi usa Time::at per convertire quel numero intero in un Time oggetto

date_time = DateTime.new(2021,8,30)
date_time.to_time
#=> 2021-08-30 00:00:00 +0000
date_time.to_time.to_i
#=> 1630281600 
timestamp = BSON::Timestamp.from_bson(date_time.to_bson)
#=> #<BSON::Timestamp:0x00007fffe31da4a8 @seconds=379, @increment=2488994816>
timestamp.to_bson.get_int64 / 1000 
#=> 1630281600
Time.at(timestamp.to_bson.get_int64 / 1000).utc
#=> 2021-08-30 00:00:00 UTC