
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
infinispan-ruby-client
Advanced tools
Infinispan is a scalable, high-availability data grid. This is a native Ruby client implementation of Infinispan's Hotrod client/server protocol, allowing Ruby applications to natively store and retrieve strings and Ruby objects in the Infinispan data grid.
This is a Level-1 client, meaning that it is a basic client and does not participate in the data grid clustering. The client currently only supports using the default cache, and all operations of the Hot Rod protocol are implemented except the server stats request.
$ gem install infinispan-ruby-client
Using the infinispan-ruby-client requires that you connect to an Infinispan server using the hotrod protocol.
First start Infinispan, specifying hotrod for the protocol
$INFINISPAN_DIR/bin/startServer.sh -r hotrod
Then write code
require 'infinispan-ruby-client' cache = Infinispan::RemoteCache.new => #<Infinispan::RemoteCache:0x100365a78 @name="", @host="localhost", @port=11222>
cache.put("Name", "Lance") => true cache.get("Name") => "Lance"
cache.put("Time", Time.now) => true time = cache.get("Time") => Tue Jun 07 17:45:17 -0400 2011 time.class => Time
Copyright 2011 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
FAQs
Unknown package
We found that infinispan-ruby-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.