Ecosyste.ms: Summary
An open API service providing a high level summary for open source projects.
https://github.com/globalsign/mgo
golang mongodb
Score: 33.28867151032082
Last synced: 3 days ago
JSON representation
Repository metadata:
The MongoDB driver for Go
- Host: GitHub
- URL: https://github.com/globalsign/mgo
- Owner: globalsign
- License: other
- Fork: true (domodwyer/mgo)
- Created: 2017-04-13T11:14:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-10-29T16:04:56.000Z (about 3 years ago)
- Last Synced: 2024-10-29T20:33:25.483Z (about 2 months ago)
- Topics: golang, mongodb
- Language: Go
- Homepage:
- Size: 7 MB
- Stars: 1,973
- Watchers: 59
- Forks: 230
- Open Issues: 66
-
Metadata Files:
- Readme: README.md
- Changelog: changestreams.go
- Contributing: CONTRIBUTING.md
- License: LICENSE
Owner metadata:
- Name: GlobalSign
- Login: globalsign
- Email:
- Kind: organization
- Description:
- Website: https://www.globalsign.com/
- Location:
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/1440101?v=4
- Repositories: 11
- Last Synced at: 2024-03-26T08:13:34.061Z
- Profile URL: https://github.com/globalsign
GitHub Events
Total
- Fork event: 1
- Watch event: 4
- Total: 5
Last Year
- Fork event: 1
- Watch event: 4
- Total: 5
Committers metadata
Last synced: about 1 month ago
Total Commits: 705
Total Committers: 70
Avg Commits per committer: 10.071
Development Distribution Score (DDS): 0.309
Commits in past year: 0
Committers in past year: 0
Avg Commits per committer in past year: 0.0
Development Distribution Score (DDS) in past year: 0.0
Name | Commits | |
---|---|---|
Gustavo Niemeyer | g****o@n****t | 487 |
Valeri Karpov | v****v@1****m | 25 |
John Arbash Meinel | j****n@a****m | 21 |
Dom Dwyer | d****m@i****m | 21 |
Christian Muirhead | c****d@c****m | 16 |
Dom Dwyer | d****r@g****m | 13 |
Dom | d****r | 9 |
eaglerayp | e****p@h****m | 7 |
Gabriel Russell | g****l@m****m | 7 |
Menno Smits | m****o@f****m | 6 |
Craig Wilson | c****n@g****m | 6 |
mike o'brien | m****5@g****m | 5 |
Wisdom Omuya | d****t@g****m | 5 |
Diego Medina | f****d@g****m | 4 |
Ryan Cox | r****x@g****m | 3 |
Livio Soares | l****s@u****m | 3 |
Las Zenow | z****w@r****t | 3 |
KJ Tsanaktsidis | k****s@g****m | 3 |
Evan | e****n@s****m | 2 |
Kyle Erf | e****f@m****m | 2 |
Maciej Galkowski | m****i@g****m | 2 |
Ryan Chipman | r****n@r****m | 2 |
Shawn Smith | s****h@g****m | 2 |
abhishekk | a****k@p****m | 2 |
carter2000 | 3****5@q****m | 2 |
Cezar Sa Espinola | c****a@g****m | 2 |
Ben Lubar | b****r@g****m | 2 |
Alexandre Cesaro | a****o@g****m | 1 |
Arno Leist | a****t@m****z | 1 |
Benjamin Ziehms | b****n@g****m | 1 |
and 40 more... |
Issue and Pull Request metadata
Last synced: 14 days ago
Total issues: 64
Total pull requests: 38
Average time to close issues: 5 months
Average time to close pull requests: 8 months
Total issue authors: 62
Total pull request authors: 33
Average comments per issue: 2.22
Average comments per pull request: 2.5
Merged pull request: 7
Bot issues: 0
Bot pull requests: 0
Past year issues: 0
Past year pull requests: 0
Past year average time to close issues: N/A
Past year average time to close pull requests: N/A
Past year issue authors: 0
Past year pull request authors: 0
Past year average comments per issue: 0
Past year average comments per pull request: 0
Past year merged pull request: 0
Past year bot issues: 0
Past year bot pull requests: 0
Top Issue Authors
- tokingHong (2)
- primalmotion (2)
- kirik (1)
- konglong87 (1)
- LouAdrien (1)
- mdevar (1)
- metalperl (1)
- msAlcantara (1)
- NeoyeElf (1)
- ngtuna (1)
- ninedraft (1)
- ogerardin (1)
- Ouroboros (1)
- pkaeding (1)
- qhenkart (1)
Top Pull Request Authors
- mkorolyov (2)
- Nifty255 (2)
- ghost (2)
- bonczj (2)
- mekpavit (2)
- xtutu (1)
- vinllen (1)
- jacksontj (1)
- jerome-laforge (1)
- fuzzypete (1)
- funny-falcon (1)
- harsh-2711 (1)
- Dragomir-Ivanov (1)
- eaglerayp (1)
- yalegko (1)
Top Issue Labels
- needs info (9)
- enhancement (7)
- help wanted (7)
- 3.6 feature (2)
- bug (2)
Top Pull Request Labels
- enhancement (13)
- 4.0 feature (3)
- 3.6 feature (2)
- help wanted (1)
- needs tests (1)
Package metadata
- Total packages: 2
- Total downloads: unknown
- Total docker downloads: 2,007,088,715
- Total dependent packages: 1,698 (may contain duplicates)
- Total dependent repositories: 19,023 (may contain duplicates)
- Total versions: 5
proxy.golang.org: github.com/globalsign/mgo
Package mgo (pronounced as "mango") offers a rich MongoDB driver for Go. Detailed documentation of the API is available at GoDoc: Usage of the driver revolves around the concept of sessions. To get started, obtain a session using the Dial function: This will establish one or more connections with the cluster of servers defined by the url parameter. From then on, the cluster may be queried with multiple consistency rules (see SetMode) and documents retrieved with statements such as: New sessions are typically created by calling session.Copy on the initial session obtained at dial time. These new sessions will share the same cluster information and connection pool, and may be easily handed into other methods and functions for organizing logic. Every session created must have its Close method called at the end of its life time, so its resources may be put back in the pool or collected, depending on the case. There is a sub-package that provides support for BSON, which can be used by itself as well: For more details, see the documentation for the types and methods.
- Homepage: https://github.com/globalsign/mgo
- Documentation: https://pkg.go.dev/github.com/globalsign/mgo#section-documentation
- Licenses: BSD-2-Clause
- Latest release: v0.0.0-20190517090918-73267e130ca1 (published over 5 years ago)
- Last Synced: 2024-12-20T11:31:12.645Z (7 days ago)
- Versions: 4
- Dependent Packages: 1,698
- Dependent Repositories: 19,023
- Docker Downloads: 2,007,088,715
-
Rankings:
- Dependent repos count: 0.048%
- Dependent packages count: 0.094%
- Docker downloads count: 0.16%
- Average: 0.726%
- Stargazers count: 1.506%
- Forks count: 1.822%
proxy.golang.org: gopkg.in/globalsign/mgo.v0
Package mgo (pronounced as "mango") offers a rich MongoDB driver for Go. Detailed documentation of the API is available at GoDoc: Usage of the driver revolves around the concept of sessions. To get started, obtain a session using the Dial function: This will establish one or more connections with the cluster of servers defined by the url parameter. From then on, the cluster may be queried with multiple consistency rules (see SetMode) and documents retrieved with statements such as: New sessions are typically created by calling session.Copy on the initial session obtained at dial time. These new sessions will share the same cluster information and connection pool, and may be easily handed into other methods and functions for organizing logic. Every session created must have its Close method called at the end of its life time, so its resources may be put back in the pool or collected, depending on the case. There is a sub-package that provides support for BSON, which can be used by itself as well: For more details, see the documentation for the types and methods.
- Homepage: https://github.com/globalsign/mgo
- Documentation: https://pkg.go.dev/gopkg.in/globalsign/mgo.v0#section-documentation
- Licenses: BSD-2-Clause
- Latest release: v0.0.0-20181015135952-eeefdecb41b8 (published about 6 years ago)
- Last Synced: 2024-12-13T10:12:36.566Z (14 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Stargazers count: 0.891%
- Forks count: 1.112%
- Average: 4.587%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%