# File lib/rq-2.3.1/qdb.rb, line 570
      def vacuum
#--{{{
        raise 'nested transaction' if @in_transaction
        begin 
          @in_transaction = true
          connect{ execute 'vacuum' }
        ensure
          @in_transaction = false
        end
        self
#--}}}
      end