问题 一个月前,我给pulsar添加了2个赌注,但我意识到这是浪费资源。我怎么能把博彩公司从7家减少到3家呢? 我的努力 通过BookKeeper的文档,我发现自动恢复将使BookKeeper集群中的所有账本在博彩公司崩溃时恢复到完全复制。但如果我一次合上四本书,我想有些账本可能会永远丢失。 bookkeeper-server/bin/bookkeeper shell recover \
zk1.example.com:2181 \ # IP and port for ZooKeeper
192.168.1.10:3181 # IP and port for the failed
嗨,我正在使用ruby 2.5.0和rails 5开发rails应用程序。我已经编写了一个api来检查用户是否存在,并提供了用户名和令牌。
check_token_controller.rb
class CheckTokenController < ApplicationController
def create
begin
user = User.where(email: check_params[:username], token: check_params[:token]).first
if user.bla