{"id":20789734,"url":"https://github.com/s4kibs4mi/jally-orm","last_synced_at":"2026-04-28T04:06:14.019Z","repository":{"id":73919189,"uuid":"126984106","full_name":"s4kibs4mi/jally-orm","owner":"s4kibs4mi","description":"An ORM library for Cassandra and ScyllaDB written in Golang.","archived":false,"fork":false,"pushed_at":"2018-04-05T12:56:58.000Z","size":15,"stargazers_count":1,"open_issues_count":7,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-27T13:15:42.594Z","etag":null,"topics":["cassandra","cassandra-cql","golang","golang-library","orm","orm-library","scylladb"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/s4kibs4mi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-27T12:38:49.000Z","updated_at":"2020-10-12T07:00:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"bb03033d-cac5-454d-a159-8fb3296e4af6","html_url":"https://github.com/s4kibs4mi/jally-orm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/s4kibs4mi/jally-orm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s4kibs4mi%2Fjally-orm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s4kibs4mi%2Fjally-orm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s4kibs4mi%2Fjally-orm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s4kibs4mi%2Fjally-orm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/s4kibs4mi","download_url":"https://codeload.github.com/s4kibs4mi/jally-orm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s4kibs4mi%2Fjally-orm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32365571,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"online","status_checked_at":"2026-04-28T02:00:07.250Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cassandra","cassandra-cql","golang","golang-library","orm","orm-library","scylladb"],"created_at":"2024-11-17T15:26:38.734Z","updated_at":"2026-04-28T04:06:13.969Z","avatar_url":"https://github.com/s4kibs4mi.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JallyORM\nAn ORM library for Cassandra and ScyllaDB written in Golang.\n\nStatus : Development ongoing\n\n### Examples,\n\nConnect,\n```go\nconfig := gocql.NewCluster(\"localhost:9042\")\nconfig.Consistency = gocql.Quorum\nconfig.Keyspace = \"test\"\n\nconfig.Timeout = 5 * time.Second\nconfig.PoolConfig = gocql.PoolConfig{\n\tHostSelectionPolicy: gocql.RoundRobinHostPolicy(),\n}\nconfig.NumConns = 5\norm, err := NewSession(config)\n```\n\nSample Struct,\n```go\ntype Student struct {\n\tID        gocql.UUID `json:\"id\" jorm:\"primary_key\"`\n\tName      string     `json:\"name\"`\n\tRoll      int        `json:\"roll\"`\n\tCGPA      float32    `json:\"cgpa\"`\n\tIsPresent bool       `json:\"is_present\"`\n\tCreatedAt time.Time  `json:\"created_at\"`\n}\n```\n\nCreate Table,\n```go\norm, err := NewSession(config)\nif err != nil {\n\tpanic(err)\n}\ns := Student{}\nq := NewQuery().Space(\"test\").Table(\"students\").Model(s)\nerr = orm.Create(q)\n```\n\nInsert value,\n```go\norm, err := NewSession(config)\nif err != nil {\n\tpanic(err)\n}\ns := Student{\n\tID:        gocql.TimeUUID(),\n\tName:      \"Sakib\",\n\tRoll:      12345,\n\tCGPA:      3.50,\n\tIsPresent: true,\n\tCreatedAt: time.Now(),\n}\nq := NewQuery().Space(\"test\").Table(\"students\").Model(s)\nerr = orm.Save(q)\n```\n\n#### License\nCopyright © Sakib Sami\n\nDistributed under [MIT](https://github.com/s4kibs4mi/jally-orm/blob/master/LICENSE) license\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs4kibs4mi%2Fjally-orm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fs4kibs4mi%2Fjally-orm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs4kibs4mi%2Fjally-orm/lists"}