Skip to content

This is a poc project with go gin server uses domain driven architecture made crud operations with scylla DB

Notifications You must be signed in to change notification settings

azar-writes-code/scylladb-poc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

  1. Run DB with Docker using below commands:
docker pull scylladb/scylla
docker run --name scylla-local -p 9042:9042 -d scylladb/scylla
docker exec -it scylla-local nodetool status
docker exec -it scylla-local cqlsh
CREATE KEYSPACE poc WITH replication = {'class': 'SimpleStrategy', 'replication_factor': 1};
DESC KEYSPACES;
USE poc;
DESC TABLES;
  1. To run go program:
go mod tidy
go run main.go

About

This is a poc project with go gin server uses domain driven architecture made crud operations with scylla DB

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages