Meteor多个服务器到一个数据库集合(本地)

时间:2017-07-08 14:17:33

标签: javascript node.js mongodb meteor npm

我有一个meteor项目,它在不同的setInterval()定时器上执行几个外部API调用,并将数据推送到MongoDB。

我想把电话分成几个"微服务" ,在自己的服务器上运行API调用的不同实例。

所有数据都存储在一个集合中

我找到了这个解决方案01:05:14,但它只是给了我错误

如何连接两个流星服务器实例以连接到默认localhost:3001数据库上的同一个集合?

b = ['Lorem', 'Ipsum', 'is', 'lorem', 'dummy', 'impsum', 'is', 'the', 'printing', 'and', 'Industry', 'typesetting', 'industry.', 'Lorem', 'has', 'been']
count = 0
c = []
for i in range(len(b)):
    if b[i].lower() not in c:
        for j in range(len(b)):
            if b[i].lower() == b[j].lower():
                count += 1
        c.append(b[i].lower())
        print b[i], count
        count = 0    
print c

1 个答案:

答案 0 :(得分:0)

在提供MONGO_URL环境变量时,Meteor不会启动MongoDB。

我们需要将MONGO_URL设置为27017端口而不是3001