Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Sorted indices for Ohm
Include the Callbacks
and Sorted
modules in your model:
include Ohm::Callbacks
include Ohm::Sorted
Add the sorted indices you want to your model:
If you want a complete index:
sorted :created_at
If you want to partition the index based on an attribute:
sorted :created_at, :group_by => :site_id
You can use both indices for the same attribute, as the partition keys are
namespaced by the group_by
attribute.
You will need to resave every model if they already exist for the index to get built.
The ranking attribute must be of a type that responds to to_f
.
To query the sorted index, use the sorted_find
class method.
>> Post.sorted_find(:created_at, site_id: "ar")
This returns an Ohm::SortedSet
, similiar to an Ohm::Set
but backed by a sorted
set.
To limit the results to a certain score range, use the between
method.
This and the following methods return a new copy of the set object, but data
is not read until it is necessary.
>> Post.sorted_find(:created_at, site_id: "ar").between(start_time, end_time)
To take a slice of the results, use the slice
method. This returns a new copy
of the set which will pass its offset
and count
parameters to Redis.
>> Post.sorted_find(:created_at, site_id: "ar").slice(2, 4)
This plugin works with Ohm versions higher than 0.1.3.
Many thanks to Damian Janowski (https://github.com/djanowski)
FAQs
Unknown package
We found that ohm-sorted 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.