Result for E6B0B404246A9D9E4047A83EEC16819772F9277B

Query result

Key Value
FileName./usr/share/doc/packages/perl-Protocol-Redis-Faster/CONTRIBUTING.md
FileSize4430
MD5B12CD03845C9D8693E432089EF79840A
SHA-1E6B0B404246A9D9E4047A83EEC16819772F9277B
SHA-2566D10058C16F7FC54D7D75FAE51C03DC1AE122E35D49945E8DCEDAF88830F0E55
SSDEEP96:gtxJoBuaruz5vLsXLdYewBb9es/HQqNWsaN9xDv9c12txg:ghoEEuzeZi9eVTv1S2U
TLSHT1759154BB6540172867C212E091AA50E3B35FD21F5255007A9CAE45ED032FA63E2F79FE
hashlookup:parent-total88
hashlookup:trust100

Network graph view

Parents (Total: 88)

The searched file hash is included in 88 parent files which include package known and seen by metalookup. A sample is included below:

Key Value
MD59677D12B44D4CC8E2C73D04A07510604
PackageArchnoarch
PackageDescriptionThis module implements the Protocol::Redis API with more optimized pure-perl internals. See Protocol::Redis for usage documentation. This is a low level parsing module, if you are looking to use Redis in Perl, try Redis, Redis::hiredis, or Mojo::Redis.
PackageNameperl-Protocol-Redis-Faster
PackageReleaselp153.5.9
PackageVersion0.003
SHA-102C025A327F0F46AAC8971F8AB5047E8A9057FA9
SHA-256A4F2A513166F70061C92DF4E72AA835B82D06B7A4745CD10AC759CAE534B3837
Key Value
MD56ACD3FD6873EBD274538B046C128264D
PackageArchnoarch
PackageDescriptionThis module implements the Protocol::Redis API with more optimized pure-perl internals. See Protocol::Redis for usage documentation. This is a low level parsing module, if you are looking to use Redis in Perl, try Redis, Redis::hiredis, or Mojo::Redis.
PackageNameperl-Protocol-Redis-Faster
PackageReleaselp150.5.1
PackageVersion0.003
SHA-10738057E92095D5EBB5C645AA3063704EF647C8A
SHA-2562467602A0B843E77AEF9B0F586033A7E84AF5A2F651AE2C2E883FFD1F66B7FB1
Key Value
MD5D7B2759B7925BD5B18DE9F82E9AFC18A
PackageArchnoarch
PackageDescription'PPIx::Utils' is a collection of utility functions for working with PPI documents. The functions are organized into submodules, and may be imported from the appropriate submodule or via this module. These functions were originally from Perl::Critic::Utils and related modules, and have been split off to this distribution for use outside of Perl::Critic.
PackageNameperl-PPIx-Utils
PackageRelease1.1
PackageVersion0.003
SHA-1073E5382CC3E00019B7A112D3D6A85D8E359342E
SHA-2564D8756FFF43477CD0F043A5CE7D8BA534EFCDE3885FC369F9E029473C92CFF3F
Key Value
MD5FCBFD05B68EE9CD6B56BC5F54EA23276
PackageArchnoarch
PackageDescriptionThis module is a wrapper of HTTP::Tiny that provides simplified functions for performing HTTP requests in a similar manner to LWP::Simple, but with slightly more useful error handling. For full control of the request process and response handling, use HTTP::Tiny directly. IO::Socket::SSL is required for HTTPS requests with HTTP::Tiny. Request methods that return the body content of the response will return a byte string suitable for directly printing, but that may need to be decoded for text operations. The HTTP::Tiny object used by these functions to make requests can be accessed as '$HTTP::Simple::UA' (for example, to configure the timeout, or replace it with a compatible object like HTTP::Tinyish). The JSON encoder used by the JSON functions can be accessed as '$HTTP::Simple::JSON', and defaults to a Cpanel::JSON::XS object if Cpanel::JSON::XS 4.11+ is installed, and otherwise a JSON::PP object. If replaced with a new object, it should have UTF-8 encoding/decoding enabled (usually the 'utf8' option). If it is set to a string, it will be used as a module name that is expected to have 'decode_json' and 'encode_json' functions.
PackageNameperl-HTTP-Simple
PackageRelease1.19
PackageVersion0.004
SHA-10E11CF312027C89007C5EA4E988AE741D4AD6969
SHA-25627C8E16D2D18BAD0566987FB878795AC6BDA8089FE419259B1A9189B8BE8AA56
Key Value
MD5809DC184C7EA8E106D8C497C76813B2C
PackageArchnoarch
PackageDescription'PPIx::Utils' is a collection of utility functions for working with PPI documents. The functions are organized into submodules, and may be imported from the appropriate submodule or via this module. These functions were originally from Perl::Critic::Utils and related modules, and have been split off to this distribution for use outside of Perl::Critic.
PackageNameperl-PPIx-Utils
PackageRelease1.2
PackageVersion0.003
SHA-1131F64750A93031EFF2B1E1492B3AF582DBE74EE
SHA-2565E0B3CBD583E7DC3902D8D22580237CF9AC14205C3F7712156D1F05951A5247C
Key Value
MD543A6D4234FC1BB7EFCDFEA059CF57C4B
PackageArchnoarch
PackageDescriptionMojo::JSON::MaybeXS is a monkey-patch module for using JSON::MaybeXS as the JSON encoder for a Mojolicious application, or anything else using Mojo::JSON. It must be loaded before Mojo::JSON so the new functions will be properly exported. Since Mojolicious version 7.87, Mojo::JSON has delegated to Cpanel::JSON::XS by default if installed and recent enough. Installing Mojolicious version 7.87+ and Cpanel::JSON::XS version 4.09+ resolves the below listed caveats between these modules, and is sufficient to improve the performance of Mojo::JSON without the use of this module.
PackageNameperl-Mojo-JSON-MaybeXS
PackageReleaselp153.1.10
PackageVersion1.002
SHA-119B674FD350B5186923C60DA8E5B6EFAF8FF1263
SHA-25637ED939C79E537E88DF18230395D70D005041E155D18105F7282C805E887DE61
Key Value
MD5E06461E7F32466E48A4879A314F866DB
PackageArchnoarch
PackageDescriptionAdding a path to @INC to load modules from a local directory may seem simple, but has a few common pitfalls to be aware of. Directly adding a relative path to '@INC' means that any later code that changes the current working directory will change where modules are loaded from. This applies to the '.' path that used to be in '@INC' by default until perl 5.26.0, or a relative path added in code like 'use lib 'path/to/lib'', and may be a vulnerability if such a location is not supposed to be writable. Additionally, the commonly used FindBin module relies on interpreter state and the path to the original script invoked by the perl interpreter, sometimes requiring workarounds in uncommon cases like generated or embedded code. This module proposes a more straightforward method: take a path relative to the current file, absolutize it, and add it to '@INC'. If this module is already available to be loaded, it can be used as with lib.pm, passing relative paths, which will be absolutized relative to the current file then passed on to lib. Multiple arguments will be separately absolutized, and absolute paths will be passed on unchanged. For cases where this module cannot be loaded beforehand, the last section of the "SYNOPSIS" can be copy-pasted into a file to perform the same task.
PackageNameperl-lib-relative
PackageRelease1.1
PackageVersion1.000
SHA-119C53860C6C3A8C9D5CF83C1CF94FF9E61133AF3
SHA-25656720B2A6D83D24F33ABDC611A88D955ECEDB605FD112E0FC56F34E74CA8DD51
Key Value
MD5D710081D824BE5DFF22736F9702C5AF0
PackageArchnoarch
PackageDescriptionMojo::DOM58 is a minimalistic and relaxed pure-perl HTML/XML DOM parser based on Mojo::DOM. It supports the at https://html.spec.whatwg.org/ and at http://www.w3.org/TR/xml/, and matching based on at http://www.w3.org/TR/selectors/. It will even try to interpret broken HTML and XML, so you should not use it for validation.
PackageMaintainerhttps://bugs.opensuse.org
PackageNameperl-Mojo-DOM58
PackageReleaselp152.1.1
PackageVersion2.000
SHA-11C2B64BECB0CBEE76AC4615B3198A39385A4FD75
SHA-256F58C77F7C6302FD7FC80794C27D7BB5334D57C4C3BC3E0B579961FEE145B7437
Key Value
MD5238B5F8F544923667CF1847C38340EBE
PackageArchnoarch
PackageDescriptionMojo::JSON::MaybeXS is a monkey-patch module for using JSON::MaybeXS as the JSON encoder for a Mojolicious application, or anything else using Mojo::JSON. It must be loaded before Mojo::JSON so the new functions will be properly exported. Since Mojolicious version 7.87, Mojo::JSON has delegated to Cpanel::JSON::XS by default if installed and recent enough. Installing Mojolicious version 7.87+ and Cpanel::JSON::XS version 4.09+ resolves the below listed caveats between these modules, and is sufficient to improve the performance of Mojo::JSON without the use of this module.
PackageNameperl-Mojo-JSON-MaybeXS
PackageReleaselp150.1.1
PackageVersion1.002
SHA-11F3FD3FBB922B09AEDEAEDEBBB47CD37CACAEB95
SHA-2569AC5473DADFB36E5E73726737E1AFE4B5D77D1E5047B4E0E3C093E1BF6C30386
Key Value
MD57C6339EF72C7B15ADB754528BAC44B6D
PackageArchnoarch
PackageDescriptionMojo::JSON::MaybeXS is a monkey-patch module for using JSON::MaybeXS as the JSON encoder for a Mojolicious application, or anything else using Mojo::JSON. It must be loaded before Mojo::JSON so the new functions will be properly exported. Since Mojolicious version 7.87, Mojo::JSON has delegated to Cpanel::JSON::XS by default if installed and recent enough. Installing Mojolicious version 7.87+ and Cpanel::JSON::XS version 4.09+ resolves the below listed caveats between these modules, and is sufficient to improve the performance of Mojo::JSON without the use of this module.
PackageNameperl-Mojo-JSON-MaybeXS
PackageRelease1.39
PackageVersion1.002
SHA-120A42908BD673DBD2C7A4C479FBF766D9846F44D
SHA-256CD10CD76F7F6450A01763EF4228DB176FB6F0EA3DAC78DF2D94696F38462DA81