some Matcher speed test harnessing

This commit is contained in:
Eliot Horowitz
2010-12-25 02:04:19 -05:00
parent de3564331d
commit 5d7fd2df7b

View File

@@ -18,12 +18,15 @@
*/
#include "pch.h"
#include "../db/matcher.h"
#include "../util/timer.h"
#include "../db/matcher.h"
#include "../db/json.h"
#include "dbtests.h"
namespace MatcherTests {
class Basic {
@@ -116,6 +119,28 @@ namespace MatcherTests {
}
};
class TimingBase {
public:
long time( const BSONObj& patt , const BSONObj& obj ){
Matcher m( patt );
Timer t;
for ( int i=0; i<10000; i++ ){
ASSERT( m.matches( obj ) );
}
return t.millis();
}
};
class AllTiming : public TimingBase {
public:
void run(){
long normal = time( BSON( "x" << 5 ) , BSON( "x" << 5 ) );
long all = time( BSON( "x" << BSON( "$all" << BSON_ARRAY( 5 ) ) ) , BSON( "x" << 5 ) );
cout << "normal: " << normal << " all: " << all << endl;
}
};
class All : public Suite {
public:
@@ -130,6 +155,7 @@ namespace MatcherTests {
add< MixedNumericIN >();
add< Size >();
add< MixedNumericEmbedded >();
add< AllTiming >();
}
} dball;