CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 08 Aug 2025 05:42:59 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100129033753
location: https://web.archive.org/web/20100129033753/https://github.com/alphazero/jredis
server-timing: captures_list;dur=2.480933, exclusion.robots;dur=0.043286, exclusion.robots.policy;dur=0.016179, esindex;dur=1.157779, cdx.remote;dur=54.632312, LoadShardBlock;dur=182.894804, PetaboxLoader3.datanode;dur=60.406046, PetaboxLoader3.resolve;dur=53.319735
x-app-server: wwwb-app224
x-ts: 302
x-tr: 327
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app224; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 08 Aug 2025 05:43:00 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Fri, 29 Jan 2010 03:37:53 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "3574b250397a2e5344490d5f68a59701"
x-archive-orig-x-runtime: 110ms
x-archive-orig-content-length: 28564
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Fri, 29 Jan 2010 03:37:53 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 27 Dec 2009 04:54:21 GMT", ; rel="prev memento"; datetime="Wed, 27 Jan 2010 18:56:12 GMT", ; rel="memento"; datetime="Fri, 29 Jan 2010 03:37:53 GMT", ; rel="next memento"; datetime="Sun, 28 Feb 2010 20:03:56 GMT", ; rel="last memento"; datetime="Sun, 20 Jul 2025 16:43:00 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_14_20100128233606_crawl102-c/51_14_20100129033745_crawl101.arc.gz
server-timing: captures_list;dur=0.517966, exclusion.robots;dur=0.019584, exclusion.robots.policy;dur=0.009051, esindex;dur=0.011370, cdx.remote;dur=7.833466, LoadShardBlock;dur=192.596134, PetaboxLoader3.datanode;dur=129.328553, PetaboxLoader3.resolve;dur=202.139972, load_resource;dur=234.357463
x-app-server: wwwb-app224
x-ts: 200
x-tr: 494
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
alphazero's jredis at master - GitHub
This service is courtesy of Pledgie.
alphazero / jredis
- Source
- Commits
- Network (3)
- Issues (1)
- Downloads (4)
- Wiki (1)
- Graphs
-
Branch:
master
-
Branches (2)
- gh-pages
- master ✓
- Tags (4)
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
Java Client and Connectors for Redis — Read more
jredis /
name | age | message | |
---|---|---|---|
![]() |
LICENSE | Wed Apr 15 12:42:36 -0700 2009 | Lincens files are in place and some eclipse ide... [alphazero] |
![]() |
NOTICE | Wed Apr 15 12:42:36 -0700 2009 | Lincens files are in place and some eclipse ide... [alphazero] |
![]() |
README | Tue Apr 21 16:49:30 -0700 2009 | Fairly substantial update. Current with latest... [alphazero] |
![]() |
RELEASE-NOTES.txt | Tue Apr 21 16:49:30 -0700 2009 | Fairly substantial update. Current with latest... [alphazero] |
![]() |
Release/ | Sun Nov 08 18:02:16 -0800 2009 | Update release 2 - 11/08/2009. See release not... [alphazero] |
![]() |
core/ | Tue Dec 22 12:01:43 -0800 2009 | Fix for issue #8 (https://github.com/alphazero/j... [alphazero] |
![]() |
documentation/ | Tue Apr 21 16:49:30 -0700 2009 | Fairly substantial update. Current with latest... [alphazero] |
![]() |
examples/ | Wed Nov 25 14:18:14 -0800 2009 | MSET/MSETNX for sync and async clients + exampl... [alphazero] |
![]() |
pom.xml | Sat Oct 17 18:43:45 -0700 2009 | Source update only: Major changes + Asynch and ... [alphazero] |
README
(This README is mainly addressing the project structure and build. For information about JRedis, please see the RELEASE-NOTES.) ---------------------------------------------------------- BUILD ---------------------------------------------------------- * Requirements: - maven Project uses Maven 2 as the build management system. You will need maven to conveniently build and package the project jars. Project master is built on Mac OS X 10.5 using maven 2.0.9. * howto Project is not yet using assemblies, but is a multi-module maven build with master POM in root directory (where you found this document). Each module has its own pom, but you will need to run maven with specific goals at the level of a major sub-module. As of now (intial release alpha.0-04152009) that translates to a 'Core' and an 'Examples'. If you wish to use JRedis only you will need the product of the Core-RI (reference implementation). If you wish to run benchmarks + use JRedis, you will also need to build the Core-BENCHMARK. Simplest thing to do is to run maven with goal package at the Core module level. This will initiate and build each module in Core: API - The specifications, which are mostly interfaces. RI - The reference implementation, which is you will use. BENCH - The benchmark classes ALL - A convenience virtual module that will build a unified jar of all modules besides itself in Core. On command line in ~/core/., issue: mvn install This will compile, test, package, and install JRedis core artifacts in your local repository and create a set of jars in each core module's 'target' directory. The pom of the Core as well as the super pom in the root folder use a source attachment plugin, so a source jar will also be created for each module. The poms of core-ri, core-bench, and core-all use a include dependencies mechanism which will build, besides the individual module's jar, an aggregate unified jar of the module's classes + the classes of any dependency it has declared. (Only install goal will do this -- package goal will simply create the module's own jar file(s)). For example, issuing mvn install from core will create in module core-bench's target directory the class and source jars for the BENCH module + a single jar containing all dependencies, which for BENCH are 'API' and 'RI'. The build system uses a structured naming convention which results in longish names, but it is very effective. (You can obviously simply change the jar names when you deploy to your application's lib or jvm classpath as you see fit.) The super pom in project root will initiate the same for all modules of JRedis, which as of now are CORE, and EXAMPLES. (Same considerations apply here.) **** IMPORTANT NOTE REGARDING UNIT TEST **** Running unit tests is absolutely critical to a sane process for developing JRedis, given that it is subject to a very demanding refactoring regime (as it is a work in progress). That means testing is critical for the master copy and accordingly ALL poms in the project require SUCCESSFUL tests after compile before continuing. **** REDIS MUST BE RUNNING ON LOCALHOST ***** So, as tests on a connector without a server are fairly pointless, this project will NOT build unless you have your localhost (6379) Redis server running. **** BUILD USES PASSWORD 'jredis' **** If you do not have password set on your redis, no worries. If you do, the build will fail, unless you do one of the following: 1) Change the password in core/pom.xml to match your password in redis.conf 2) Alternatively tell maven to skip tests: mvn -Dmaven.test.skip=true install **** REMEMBER: TESTS WILL FLUSH DBS 13 AND 10 ***** - 04-21-09