I have a bash_completion script that calls “knife --help” to get a list of
suggestions. The script works great, but each call costs about 2 seconds
due to “knife --help” taking this long.
Any ideas why it’s so slow? It isn’t doing anything, just outputting help
info. Should take under a millisecond, right?
I have a bash_completion script that calls "knife --help" to get a list of suggestions. The script works great, but each call costs about 2 seconds due to "knife --help" taking this long.
Any ideas why it's so slow? It isn't doing anything, just outputting help info. Should take under a millisecond, right?
I recently ran into this problem myself. The way I got around it was
upgrading to ruby 2.0.0 via rvm and created a gem set specifically to
chef/knife stuff. It worked great for me, maybe give that a shot?
I have a bash_completion script that calls "knife --help" to get a list
of suggestions. The script works great, but each call costs about 2
seconds due to "knife --help" taking this long.
Any ideas why it's so slow? It isn't doing anything, just outputting
help info. Should take under a millisecond, right?
I recently ran into this problem myself. The way I got around it was
upgrading to ruby 2.0.0 via rvm and created a gem set specifically to
chef/knife stuff. It worked great for me, maybe give that a shot?
I have a bash_completion script that calls "knife --help" to get a list
of suggestions. The script works great, but each call costs about 2
seconds due to "knife --help" taking this long.
Any ideas why it's so slow? It isn't doing anything, just outputting
help info. Should take under a millisecond, right?
Or use bundler (Gemfile + 'bundle exec knife help') if you have a plain
ruby install and not rvm
On Oct 10, 2013 6:39 AM, "DV" vindimy@gmail.com wrote:
I recently ran into this problem myself. The way I got around it was
upgrading to ruby 2.0.0 via rvm and created a gem set specifically to
chef/knife stuff. It worked great for me, maybe give that a shot?
I have a bash_completion script that calls "knife --help" to get a list
of suggestions. The script works great, but each call costs about 2
seconds due to "knife --help" taking this long.
Any ideas why it's so slow? It isn't doing anything, just outputting
help info. Should take under a millisecond, right?
Honestly gemset didn't reduce the "knife --help" time by much - maybe 20%
at best. I'll try bundler.
On Thu, Oct 10, 2013 at 10:06 AM, Torben Knerr ukio@gmx.de wrote:
Or use bundler (Gemfile + 'bundle exec knife help') if you have a plain
ruby install and not rvm
On Oct 10, 2013 6:39 AM, "DV" vindimy@gmail.com wrote:
I recently ran into this problem myself. The way I got around it was
upgrading to ruby 2.0.0 via rvm and created a gem set specifically to
chef/knife stuff. It worked great for me, maybe give that a shot?
I have a bash_completion script that calls "knife --help" to get a
list
of suggestions. The script works great, but each call costs about 2
seconds due to "knife --help" taking this long.
Any ideas why it's so slow? It isn't doing anything, just outputting
help info. Should take under a millisecond, right?