Rails 콘솔 / irb 출력을 억제하는 방법


89

나는 꽤 이상한 문제에 봉착했다.

저는 Rails Console의 프로덕션 서버에서 일부 db 항목을 테스트하고 있었는데, 거의 모든 명령이 ssh 채널이 중단되는 결과로 인해 엄청난 수의 o / p 라인을 생성했습니다.

콘솔 / irb 스크린 풀을 억제하는 방법이 있습니까?

감사

답변:


190

추가 할 수 있습니다 . 모든 명령 / 문에 nil .

예:

users = User.all; nil

실제로 irb는 마지막으로 실행 된 명령문의 (반환) 값을 인쇄합니다. 따라서이 경우 nil이 마지막으로 실행 된 유효한 문이므로 nil 만 인쇄됩니다. :)


13
더 짧은 방법은 세미콜론 뒤에 다음과 같은 개체가 오는 것입니다users = User.all; 0
Bob

1
이것은 반환 된 객체에 대해서만 작동하며 p 및 puts의 작업이 아닙니다.
the_minted

그 단지 해킹, 당신은 단지 수, 같이 사용할 수 있습니다 Users.all.count, 단 하나 개의 라인 출력을, 당신은 저장하려면 변수 출력은 다음과 같이 수행 할 수 있습니다users = User.all; Users.all.count
Tasawar 후세인

31

irb / console 출력을 침묵시키는 방법을 찾기 위해 austinruby.com 에서도 답변을 찾았습니다 .

침묵 irb :

conf.return_format = ""

기본 출력 :

conf.return_format = "=> %s\n"

예를 들어 512 자로 제한 :

conf.return_format = "=> limited output\n %.512s\n"

매우 유용한. irb / rails 콘솔을 여는 동안 이것을 설정할 수있는 방법이 있습니까?
Kache 2013

$ HOME / .irbrc에 넣어보십시오.
hdgarrood 2013

8

여기에 이것을 ~ / .irbrc에 추가하십시오.

require 'ctx'
require 'awesome_print'

module IRB
  class Irb    
    ctx :ap do
      def output_value()
        ap(@context.last_value)
      end
    end
    ctx :puts do
      def output_value()
        puts(@context.last_value)
      end
    end
    ctx :p do
      def output_value()
        p(@context.last_value)
      end
    end
    ctx :quiet do
      def output_value()
      end
    end
  end
end

def irb_mode(mode)
  ctx(mode) { irb }
end

(참고 : 물론 선택 사항 ctx이지만 먼저 gem을 설치해야합니다 awesome_print.)

이제 irb를 사용하는 콘솔에있을 때 다음을 수행 할 수 있습니다.

일반 모드 :

irb(main):001:0> { this:'is a complex object', that:[ { will:'probably'}, { be:'good to read' } ], in:{ some:{ formatted:'way'} } }

=> {:this=>"is a complex object", :that=>[{:will=>"probably"}, {:be=>"good to read"}], :in=>{:some=>{:formatted=>"way"}}}

... 예, 당신이 기대하는 것입니다.

awesome_print 방법:

irb(main):002:0> irb_mode(:ap)
irb#1(main):001:0> { this:'is a complex object', that:[ { will:'probably'}, { be:'good to read' } ], in:{ some:{ formatted:'way'} } }

=> {
    :this => "is a complex object",
    :that => [
        [0] {
            :will => "probably"
        },
        [1] {
            :be => "good to read"
        }
    ],
      :in => {
        :some => {
            :formatted => "way"
        }
    }
}

... 와우, 이제 모든 것이 멋지게 인쇄되고 있습니다! :)

저소음 모드 :

irb#1(main):002:0> irb_mode(:quiet)
irb#1(main):001:0> { this:'is a complex object', that:[ { will:'probably'}, { be:'good to read' } ], in:{ some:{ formatted:'way'} } }
irb#1(main):002:0>

... 워, 출력이 전혀 없습니까? 좋은.

어쨌든, 원하는 모드를 추가 할 수 있으며 해당 모드를 마쳤을 때 종료 exit또는 종료 하면 이전 모드로 돌아갑니다.

도움이 되었기를 바랍니다. :)


4

irb 내에서 다음을 실행하면 저에게 효과적입니다.

irb_context.echo = false

4
irb --simple-prompt --noecho
  • --simple-prompt -간단한 프롬프트 사용-그냥 >>
  • --noecho -작업 결과를 억제합니다.

4

일반적으로 출력 억제

또한 필요 에 따라 irb / console뿐만 아니라 일반적으로 출력 을 사용 quietly하거나 silence_stream억제 하는 방법을 살펴보십시오 .

silence_stream(STDOUT) do
  users = User.all
end

참고 : silence_streamRails 5+에서 제거되었습니다.

참고 : quietlyRuby 2.2.0에서는 더 이상 사용되지 않으며 결국 제거됩니다. ( BenMorganIO 에게 감사 드립니다 !)

자세한 내용은 여기 에서 확인할 수 있습니다 .

Rails 5+에 대한 해결 방법.

위에서 언급했듯이은 silence_stream스레드로부터 안전하지 않기 때문에 더 이상 사용할 수 없습니다. 스레드로부터 안전한 대안은 없습니다. 그러나 여전히 사용 silence_stream하고 싶고 스레드로부터 안전하지 않고 다중 스레드 방식으로 사용하지 않는다는 것을 알고 있다면 수동으로 이니셜 라이저로 다시 추가 할 수 있습니다.

config/initializer/silence_stream.rb

# Re-implementation of `silence_stream` that was removed in Rails 5 due to it not being threadsafe.
# This is not threadsafe either so only use it in single threaded operations.
# See https://api.rubyonrails.org/v4.2.5/classes/Kernel.html#method-i-silence_stream.
#
def silence_stream( stream )
  old_stream = stream.dup
  stream.reopen( File::NULL )
  stream.sync = true
  yield

ensure
  stream.reopen( old_stream )
  old_stream.close
end

1
참고 quietly루비 2.2.0에서 더 이상 사용되지되고 제거 될 것입니다.
BenMorganIO 2015

@BenMorganIO 답변에 메모를 추가했습니다. 감사합니다!
Joshua Pinter 2015
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.