Możesz jednak trochę zmienić swój schemat. Jeśli Twoje dokumenty wyglądały tak:
{
'_id' : 'star_wars',
'count' : 1234,
'spellings' :
{
'Star wars': 10,
'Star Wars': 15,
'sTaR WaRs': 5
}
}
Twoje aktualizacje będą tak proste, jak:
db.movies.update({_id:"star_wars"},{$inc:{"spellings.Star Wars":1}},true)