PROIECT DE PRACTICA

Bine ati venit pe blogul meu!
Acesta este primul meu blog si in acelasi timp - un proiect de practica, cu tema: MongoDB.

joi, 28 iunie 2012

MongoDB - baza de date orientata pe documente

"Big data, agile development, and cloud computing are driving new requirements for database management systems. MongoDB is uniquely suited to address these challenges."
"MongoDB is in the sweet spot of performance and features. Its rich data types, querying, and in place updates reduced development time to minutes from days for modeling rich domain objects." (A customer)

PREZENTARE GENERALA: Caracteristici, Facilitati

CAZURI DE UTILIZARE

LUCRUL CU MongoDB




Legaturi utile:
Forum discutii:      Forum mongoDB 
Tutorial:                Tutorial online
Instruire:               Training Center 
Probleme:            Bug-uri  

Un comentariu:

  1. #!/bin/bash
    # $1=nom de fichier de log

    if [ $# -eq 0 ]
    then
    echo "Arg: le chemin vers le fichier de log apache "
    exit
    fi

    if [ -f $1]
    then
    nb_acces=`wc -l $1`
    echo "Le nombre d'acces pour le site este $nb_acces!"
    else
    echo "Le ficheir de log $1 n'existe pas!"
    exit
    fi

    RăspundețiȘtergere