Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
SSD is an append-only, file-based, immutable key-value store for Microservices written in Ruby.
SSD is carefully crafted to scale specially-well with the Microservies Architeturual Pattern to allow providing storage for independently deployable services with ease.
gem install ssd
# Simple Usage
# writes to the store
SSD.write("company_api/microservice_name/", "special_id", "this is a big value super funny")
# returns the last value of the append-only store
SSD.read("company_api/microservice_name/", "special_id")
# Dumps all the store
SSD.dump("company_api/microservice_name/", "special_id")
end
Further more you can use ssd console commands to view the contents in a readable manner, SSD can use Marshal for performance(the default is yaml) but the ssd commands views it in yaml for readability
ssd view ./ssd/company_api/microservice_name/special_id
# Entity Usage
require 'sinatra/base'
require 'ssd'
module MyApp
class User
include SSD::Entity
attr_accessor :id, :name, :bio
def initialize
end
end
class API < Sinatra::Base
get '/' do
##################### Writing #####################
@user = MyApp::User.new
@user.id = "somekind_of_id_like_username_or_email"
# Set the ssd key of the object
@user.ssd = @user.id
# Do what you wish with your object
@user.name = "Makki Omura"
@user.bio = "a charming girl!"
# If you are ready to store your object to disk; Do an `append!` and viola! DONE
@user.append!
##################### READING #####################
# If you want to get your object back from disk; Use Klass.ssd(:ssd)
result = MyApp::User.ssd("somekind_of_id_like_username_or_email")
result.name
end
run!
end
end
Asynchronous I/O [https://en.wikipedia.org/wiki/Asynchronous_I/O]
FAQs
Unknown package
We found that ssd 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.