Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yurijbogdanov/sync
https://github.com/yurijbogdanov/sync
php waitgroup
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/yurijbogdanov/sync
- Owner: yurijbogdanov
- License: mit
- Created: 2021-02-18T19:47:22.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-02-28T16:24:24.000Z (over 3 years ago)
- Last Synced: 2024-04-20T03:03:03.411Z (7 months ago)
- Topics: php, waitgroup
- Language: PHP
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sync
## wait group
```mysql
CREATE TABLE IF NOT EXISTS `sync_waitgroup` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uid` varchar(255) NOT NULL,
`counter` int(11) NOT NULL DEFAULT 0,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `uid` (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
```