When dropping a database from mongodb, the database contents are dropped, but the database name continues to clutter the database list:
$ mongo localhost:49996
MongoDB shell version: 2.0.7
connecting to: localhost:49996/test
> use mp_scratch
switched to db mp_scratch
> db.dropDatabase()
{ "dropped" : "mp_scratch", "ok" : 1 }
> show dbs
mp_scratch (empty)
test (empty)
Is there any way to remove mp_scratch from the db list? I've been all over SO, the mongo docs, and google, but haven't been able to find anything, which naively seems crazy. On the other hand, is there a reason that removing the database completely is impossible?