Můžete však trochu změnit schéma. Pokud vaše dokumenty vypadaly takto:
{
'_id' : 'star_wars',
'count' : 1234,
'spellings' :
{
'Star wars': 10,
'Star Wars': 15,
'sTaR WaRs': 5
}
}
Vaše aktualizace by byly stejně jednoduché jako:
db.movies.update({_id:"star_wars"},{$inc:{"spellings.Star Wars":1}},true)