"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
Tutorial: Tutorial online
Instruire: Training Center
Probleme: Bug-uri
#!/bin/bash
RăspundețiȘtergere# $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