nzsql -d SYSTEM -tqA -c "select datname from _t_database;"| sort | { while read db ; do ( mkdir -p $base_dir/$db ; test `nzsession | wc -l` -lt 300 && nzdumpschema -R $db $base_dir/$db/create-$db-database.sh $base_dir/ & ) ; done ; }
Back to Basics: Using the Parallel Library to Massively Boost Loop
Performance
-
[image: Parallell Faces]
A few days ago I posted a quick note on X about a specific use case of
using the Parallel library in .NET to *massively optimize...
2 weeks ago