Giter VIP home page Giter VIP logo

active_cursor's Introduction

ActiveCursor

This gem adds support for cursors to Active Record. This library only supports PostgreSQL.

Installation

Add this line to your application's Gemfile:

gem 'active_cursor'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install active_cursor

Why?

Sometimes you need to process a huge amount of data, but loading the entire dataset into memory isn't possible.

In those cases, you'll usually reach for Active Record's find_each method, which will only load records in batches.

Unfortunately, find_each requires that each record in the dataset has a unique, integer ID. That's not always possible. Enter cursors.

Usage

Extend your ApplicationRecord with ActiveCursor::QueryMethods:

class ApplicationRecord < ActiveRecord::Base
  extend ActiveCursor::QueryMethods
end

Now, you're ready to start cursing.

User.cursor.each { |user| ... }
User.cursor.each_row { |attributes| ... }
User.select(:id, :name).cursor.each_tuple { |id, name| ... }

By default, this will load 1,000 records at a time from the database. You can change that by specifying the batch size:

User.cursor(batch_size: 10).each { |user| ... }

All methods return enumerables when no block is given, so you can use the full power of Ruby's Enumerable:

User.cursor.each.find { |user| user.name == "Rick" }

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/rzane/active_cursor.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.