serverLog(LL_WARNING,"The RDB file contains module data I can't load: no matching module '%s'",name);
exit(1);
}
RedisModuleIOio;
moduleInitIOContext(io,mt,rdb);
/* Call the rdb_load method of the module providing the 10 bit
* encoding version in the lower 10 bits of the module ID. */
void*ptr=mt->rdb_load(&io,moduleid&1023);
if(ptr==NULL){
moduleTypeNameByID(name,moduleid);
serverLog(LL_WARNING,"The RDB file contains module data for the module type '%s', that the responsible module is not able to load. Check for modules log above for additional clues.",name);