Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.