Skip to content

Instantly share code, notes, and snippets.

View DevBrent's full-sized avatar

Brent DevBrent

View GitHub Profile
@DevBrent
DevBrent / README.md
Last active December 14, 2024 19:20
MongoDB Index Export/Migration Tool

MongoDB Index Export/Migration Tool

Description:

Have you ever needed to copy your indexes from one platform to another without restoring a backup?

Instructions:

Run this script on the source database. You have one option which is to force the background option.

var always_background = true;
@fieg
fieg / redis-expire.sh
Last active October 10, 2022 23:09
Set expire on large set of keys using pattern in Redis
#!/bin/bash
if [ $# -ne 4 ]
then
echo "Usage: $0 <host> <port> <pattern> <seconds>"
exit 1
fi
cursor=-1
keys=""