
288
Downloads
288
Downloads of v 3.5
7/26/2015
Last update
Hazelcast is an open source in-memory data grid based on Java.
It supports forming a cluster using multiple nodes, distributing data evenly across all nodes. This allows for vertical scaling both in terms of available storage space and processing power.
Hazelcast is usually used for:
- caching frequently accessed data in-memory
- storing temporal data like web sessions
- in-memory data processing and analytics
- as a memcached alternative with a protocol compatible interface
- cross-java virtual machine JVM communication and shared storage
Note: this package does not include checksum verification, as the downloaded ZIP archive has a different checksum with each download.
To install Hazelcast, run the following command from the command line or from PowerShell:
C:\> choco install hazelcast
To upgrade Hazelcast, run the following command from the command line or from PowerShell:
C:\> choco upgrade hazelcast
Files
Hide- tools\chocolateyInstall.ps1
Show
$ErrorActionPreference = 'Stop'; $packageName = 'hazelcast' $packageVersion = '3.5' $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $url = 'http://download.hazelcast.com/download.jsp?version=hazelcast-3.5&p=chocolatey' $global:installLocation = Get-BinRoot if(!$PSScriptRoot){ $PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent } . "$PSScriptRoot\OverwriteParameters.ps1" OverwriteParameters Install-ChocolateyZipPackage "$packageName" "$url" "$global:installLocation"
- tools\chocolateyUninstall.ps1
Show
$ErrorActionPreference = 'Stop'; $packageName = 'hazelcast' if(!$PSScriptRoot){ $PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent } . "$PSScriptRoot\Uninstall-ZipPackage.ps1" Uninstall-ZipPackage "$packageName"
- tools\OverwriteParameters.ps1
Show
function OverwriteParameters { $arguments = @{}; $packageParameters = $env:chocolateyPackageParameters; if($packageParameters) { Write-Host "PackageParameters: $packageParameters" $MATCH_PATTERN = "/([a-zA-Z]+)=(.*)" $PARAMATER_NAME_INDEX = 1 $VALUE_INDEX = 2 if($packageParameters -match $MATCH_PATTERN){ $results = $packageParameters | Select-String $MATCH_PATTERN -AllMatches $results.matches | % { $arguments.Add( $_.Groups[$PARAMATER_NAME_INDEX].Value.Trim(), $_.Groups[$VALUE_INDEX].Value.Trim()) } } else { Write-Host "Default packageParameters will be used" } if($arguments.ContainsKey("InstallLocation")) { $global:installLocation = $arguments["InstallLocation"]; Write-Host "Value variable installLocation changed to $global:installLocation" } else { Write-Host "Default InstallLocation will be used" } } else { Write-Host "Package parameters will not be overwritten" } }
- tools\Uninstall-ZipPackage.ps1
Show
function Uninstall-ZipPackage { param( [string] $packageName ) if(!$packageName) { Write-ChocolateyFailure "Uninstall-ZipPackage" "Missing PackageName input parameter." return } ChildItem "$env:ChocolateyInstall\lib\${packageName}" -Recurse -Filter "${packageName}Install.zip.txt" | ForEach-Object{ $installLocation = (Get-Content $_.FullName | Select-Object -First 1); if (("$installLocation" -match "${packageName}") -and (Test-Path -Path "$installLocation")) { Write-Host "Uninstalling by removing directory $installLocation"; Remove-Item -Recurse -Force "$installLocation" } else { Write-ChocolateyFailure "Uninstall-ZipPackage" "Unable to delete directory: $installLocation" } } }
Virus Scan Results
- hazelcast.3.5.nupkg (06e6f829748d) - ## / 56 - Log in or click on link to see number of positives
- hazelcast-3.5.zip (a1c684b1194e) - ## / 54 - Log in or click on link to see number of positives
- hazelcast-3.5.zip (9a2ed4dc2c1c) - ## / 53 - Log in or click on link to see number of positives
Dependencies
Package Maintainer(s)
Software Author(s)
Copyright
2015 Hazelcast, Inc
Tags
Release Notes
http://docs.hazelcast.org/docs/3.5/manual/html-single/hazelcast-documentation.html#release-notes
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
Hazelcast 3.5 | 288 | Sunday, July 26, 2015 | approved |
Discussion for the Hazelcast Package
Ground rules:
- This discussion is only about Hazelcast and the Hazelcast package. If you have feedback for Chocolatey, please contact the google group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Hazelcast, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.