Giter Site home page Giter Site logo

registry_sample's Introduction

RegistrySample

Example application using the new Registry module in Elixir 1.4

See this blog post for more context.

The Basics

Clone the Repo

git clone [email protected]:amokan/registry_sample.git

Run the sample in IEX

cd registry_sample
iex -S mix

Scenario

From the blog post:

Imagine we have a scenario where we are selling widgets to customers. Our boss wants us to build a realtime UI that shows every account that has placed an order in the current day along with some basic info about each account. If an account doesn’t place another order within 24 hours, it should fall off the UI

RegistrySample.AccountSupervisor

The RegistrySample.AccountSupervisor is a :simple_one_for_one supervisor that gives us a few helpful functions for creating new RegistrySample.Account processes and indicating which processes are already running.

Let's create an account process for account_id # 2 and account_id # 10.

iex> RegistrySample.AccountSupervisor.find_or_create_process(2)
{:ok, 2}

iex> RegistrySample.AccountSupervisor.find_or_create_process(10)
{:ok, 2}

iex> RegistrySample.AccountSupervisor.get_all_account_widgets_ordered
[%{account_id: 2, widgets_sold: 1}, %{account_id: 10, widgets_sold: 1}]

Now we can say that account_id # 10 ordered another widget, by just passing the account_id

iex> RegistrySample.Account.order_widget(10)
:ok

iex> RegistrySample.AccountSupervisor.get_all_account_widgets_ordered
[%{account_id: 2, widgets_sold: 1}, %{account_id: 10, widgets_sold: 2}]

registry_sample's People

Contributors

amokan avatar saiberz avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

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.