mongoDB-2.7.1.1: Driver (client) for MongoDB, a free, scalable, fast, document DBMS
Safe HaskellNone
LanguageHaskell2010

Database.MongoDB.Admin

Description

Database administrative functions

Synopsis

Admin

Collection

createCollection :: MonadIO m => [CollectionOption] -> Collection -> Action m Document Source #

Create collection with given options. You only need to call this to set options, otherwise a collection is created automatically on first use with no options.

renameCollection :: MonadIO m => Collection -> Collection -> Action m Document Source #

Rename first collection to second collection

dropCollection :: (MonadIO m, MonadFail m) => Collection -> Action m Bool Source #

Delete the given collection! Return True if collection existed (and was deleted); return False if collection did not exist (and no action).

validateCollection :: MonadIO m => Collection -> Action m Document Source #

Validate the given collection, scanning the data and indexes for correctness. This operation takes a while.

Index

data Index Source #

Instances

Instances details
Eq Index Source # 
Instance details

Defined in Database.MongoDB.Admin

Methods

(==) :: Index -> Index -> Bool #

(/=) :: Index -> Index -> Bool #

Show Index Source # 
Instance details

Defined in Database.MongoDB.Admin

Methods

showsPrec :: Int -> Index -> ShowS #

show :: Index -> String #

showList :: [Index] -> ShowS #

index :: Collection -> Order -> Index Source #

Spec of index of ordered keys on collection. iName is generated from keys. iUnique and iDropDups are False.

ensureIndex :: MonadIO m => Index -> Action m () Source #

Create index if we did not already create one. May be called repeatedly with practically no performance hit, because we remember if we already called this for the same index (although this memory gets wiped out every 15 minutes, in case another client drops the index and we want to create it again).

createIndex :: MonadIO m => Index -> Action m () Source #

Create index on the server. This call goes to the server every time.

dropIndex :: MonadIO m => Collection -> IndexName -> Action m Document Source #

Remove the index from the given collection.

getIndexes :: MonadIO m => Collection -> Action m [Document] Source #

Get all indexes on this collection

dropIndexes :: MonadIO m => Collection -> Action m Document Source #

Drop all indexes on this collection

User

allUsers :: MonadIO m => Action m [Document] Source #

Fetch all users of this database

addUser :: MonadIO m => Bool -> Username -> Password -> Action m () Source #

Add user with password with read-only access if the boolean argument is True, or read-write access if it's False

Database

admin :: Database Source #

The "admin" database, which stores user authorization and authentication data plus other system collections.

cloneDatabase :: MonadIO m => Database -> Host -> Action m Document Source #

Copy database from given host to the server I am connected to. Fails and returns "ok" = 0 if we don't have permission to read from given server (use copyDatabase in this case).

copyDatabase :: MonadIO m => Database -> Host -> Maybe (Username, Password) -> Database -> Action m Document Source #

Copy database from given host to the server I am connected to. If username & password is supplied use them to read from given host.

dropDatabase :: MonadIO m => Database -> Action m Document Source #

Delete the given database!

repairDatabase :: MonadIO m => Database -> Action m Document Source #

Attempt to fix any corrupt records. This operation takes a while.

Server

serverBuildInfo :: MonadIO m => Action m Document Source #

Return a document containing the parameters used to compile the server instance.

serverVersion :: MonadIO m => Action m Text Source #

Return the version of the server instance.

Diagnotics

Collection

collectionStats :: MonadIO m => Collection -> Action m Document Source #

Return some storage statistics for the given collection.

dataSize :: MonadIO m => Collection -> Action m Int Source #

Return the total uncompressed size (in bytes) in memory of all records in the given collection. Does not include indexes.

storageSize :: MonadIO m => Collection -> Action m Int Source #

Return the total bytes allocated to the given collection. Does not include indexes.

totalIndexSize :: MonadIO m => Collection -> Action m Int Source #

The total size in bytes of all indexes in this collection.

Profiling

data ProfilingLevel Source #

The available profiler levels.

Constructors

Off

No data collection.

Slow

Data collected only for slow operations. The slow operation time threshold is 100ms by default, but can be changed using setProfilingLevel.

All

Data collected for all operations.

getProfilingLevel :: MonadIO m => Action m ProfilingLevel Source #

Get the profiler level.

setProfilingLevel :: MonadIO m => ProfilingLevel -> Maybe MilliSec -> Action m () Source #

Set the profiler level, and optionally the slow operation time threshold (in milliseconds).

Database

dbStats :: MonadIO m => Action m Document Source #

Return some storage statistics for the given database.

type OpNum = Int Source #

An operation indentifier.

currentOp :: MonadIO m => Action m (Maybe Document) Source #

See currently running operation on the database, if any

killOp :: MonadIO m => OpNum -> Action m (Maybe Document) Source #

Terminate the operation specified by the given OpNum.

Server

serverStatus :: MonadIO m => Action m Document Source #

Return a document with an overview of the state of the database.