Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/v1.1.0 #8

Merged
merged 5 commits into from Jul 16, 2021
Merged

Release/v1.1.0 #8

merged 5 commits into from Jul 16, 2021

Commits on Jul 16, 2021

  1. Copy the full SHA
    2f4bbd3 View commit details
    Browse the repository at this point in the history
  2. Encode a common pattern as the default behavior. (#6)

    * Encode a common pattern as the default behavior.
    
    It is a common pattern when using GenRegistry to wrap lookup_or_start/4
    with a call to lookup/2 first.
    
    This pattern exists because it allows the caller to do a fast ETS
    lookup in the client context without having to switch to the server
    context when the process is already running.
    
    lookup_or_start/4 accepts a GenServer.server(), in the cases that a
    caller uses a pid, the old path will be followed since there's no good
    way to go from pid to :ets.tab().  If the caller provides an atom
    (local named process) then the atom will be assumed to be the
    :ets.tab() and a client-side lookup performed.
    
    * Tests for the non-name case
    ihumanable committed Jul 16, 2021
    Copy the full SHA
    cfb6f62 View commit details
    Browse the repository at this point in the history
  3. Version bump

    ihumanable committed Jul 16, 2021
    Copy the full SHA
    7884cd6 View commit details
    Browse the repository at this point in the history
  4. Update README.md

    Co-authored-by: Stephen Birarda <commit@birarda.com>
    ihumanable and birarda committed Jul 16, 2021
    Copy the full SHA
    2f43bdb View commit details
    Browse the repository at this point in the history
  5. Update README.md

    Co-authored-by: Stephen Birarda <commit@birarda.com>
    ihumanable and birarda committed Jul 16, 2021
    Copy the full SHA
    9001d46 View commit details
    Browse the repository at this point in the history