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

Opretter BSON-objekt fra JSON-streng

... Og siden 3.0.0 kan du:

import org.bson.Document;

final Document doc = new Document("myKey", "myValue");
final String jsonString = doc.toJson();
final Document doc = Document.parse(jsonString);

Officielle dokumenter:

  • Document.parse(String)
  • Document.toJson()


  1. MongoDB shell og server matcher ikke

  2. Kan redis pipeline flere kommandoer, der afhænger af tidligere?

  3. Redis værdiopdatering

  4. Brug af redis som cache til en mysql-database