June 2017
Beginner
1091 pages
22h 9m
English
It's time to see our code in action. Ensure that you have nsqlookupd, nsqd, and mongod running in separate terminal windows with the following:
nsqlookupd nsqd --lookupd-tcp-address=127.0.0.1:4160 mongod --dbpath ./db
If you haven't already done so, make sure the twittervotes program is running too. Then, in the counter folder, build and run our counting program:
go build -o counter ./counter
You should see a periodic output describing what work counter is doing, such as the following:
No new votes, skipping database update Updating database... map[win:2 happy:2 fail:1] Finished updating database... No new votes, skipping database update Updating database... map[win:3] Finished updating database...
The output will, of course, ...
Read now
Unlock full access