Skip to content

Instantly share code, notes, and snippets.

View stephde's full-sized avatar

Stephan Detje stephde

View GitHub Profile
@stephde
stephde / sqs-task-queue.go
Last active January 11, 2021 14:01
Delayed task execution in golang with AWS SQS
package main
import (
"fmt"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/sqs"
"github.com/aws/aws-sdk-go/service/sqs/sqsiface"
@stephde
stephde / redis-task-queue.go
Last active April 11, 2024 16:12
Delayed task queue with redis in golang
package main
import (
"encoding/json"
"fmt"
"time"
"github.com/go-redis/redis"
"github.com/google/uuid"
)