{"id":16389756,"url":"https://github.com/FeatureBaseDB/java-pilosa","last_synced_at":"2025-10-26T13:30:44.982Z","repository":{"id":45108783,"uuid":"81125398","full_name":"FeatureBaseDB/java-pilosa","owner":"FeatureBaseDB","description":"Java client library for Pilosa","archived":true,"fork":false,"pushed_at":"2022-09-27T20:58:30.000Z","size":1448,"stargazers_count":19,"open_issues_count":7,"forks_count":15,"subscribers_count":18,"default_branch":"master","last_synced_at":"2025-02-08T12:02:25.954Z","etag":null,"topics":["java","pilosa"],"latest_commit_sha":null,"homepage":"https://www.pilosa.com/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FeatureBaseDB.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-02-06T19:48:58.000Z","updated_at":"2023-10-11T14:23:40.000Z","dependencies_parsed_at":"2023-01-18T16:28:18.103Z","dependency_job_id":null,"html_url":"https://github.com/FeatureBaseDB/java-pilosa","commit_stats":null,"previous_names":["pilosa/java-pilosa"],"tags_count":19,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FeatureBaseDB%2Fjava-pilosa","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FeatureBaseDB%2Fjava-pilosa/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FeatureBaseDB%2Fjava-pilosa/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FeatureBaseDB%2Fjava-pilosa/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FeatureBaseDB","download_url":"https://codeload.github.com/FeatureBaseDB/java-pilosa/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238328529,"owners_count":19453845,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","pilosa"],"created_at":"2024-10-11T04:34:13.455Z","updated_at":"2025-10-26T13:30:39.659Z","avatar_url":"https://github.com/FeatureBaseDB.png","language":"Java","funding_links":[],"categories":["Software"],"sub_categories":["Client"],"readme":"# Java Client for Pilosa\n\nThis repo archived Sept 2022 as part of the transition from Pilosa to FeatureBase.\nPlease contact community[at]featurebase[dot]com with any questions.\n\n\u003ca href=\"https://github.com/pilosa\"\u003e\u003cimg src=\"https://img.shields.io/badge/pilosa-1.4-blue.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22pilosa-client%22\"\u003e\u003cimg src=\"https://img.shields.io/maven-central/v/com.pilosa/pilosa-client.svg?maxAge=2592\"\u003e\u003c/a\u003e\n\u003ca href=\"https://travis-ci.org/pilosa/java-pilosa\"\u003e\u003cimg src=\"https://api.travis-ci.org/pilosa/java-pilosa.svg?branch=master\"\u003e\u003c/a\u003e\n\u003ca href=\"https://coveralls.io/github/pilosa/java-pilosa?branch=master\"\u003e\u003cimg src=\"https://coveralls.io/repos/github/pilosa/java-pilosa/badge.svg?branch=master\" /\u003e\u003c/a\u003e\n\u003ca href=\"http://javadoc.io/doc/com.pilosa/pilosa-client\"\u003e\u003cimg src=\"http://javadoc.io/badge/com.pilosa/pilosa-client.svg\" alt=\"Javadocs\"\u003e\u003c/a\u003e\n\n\u003cimg src=\"https://www.pilosa.com/img/ee.svg\" style=\"float: right\" align=\"right\" height=\"301\"\u003e\n\nJava client for Pilosa high performance distributed index.\n\n## What's New?\n\nSee: [CHANGELOG](CHANGELOG.md)\n\n## Requirements\n\n* JDK 7 and higher\n* Maven 3 and higher\n\n## Install\n\nAdd the following dependency in your `pom.xml`:\n\n```xml\n\u003cdependencies\u003e\n    \u003cdependency\u003e\n        \u003cgroupId\u003ecom.pilosa\u003c/groupId\u003e\n        \u003cartifactId\u003epilosa-client\u003c/artifactId\u003e\n        \u003cversion\u003e1.4.0\u003c/version\u003e\n    \u003c/dependency\u003e\n\u003c/dependencies\u003e\n```\n\n## Usage\n\n### Quick overview\n\nAssuming [Pilosa](https://github.com/pilosa/pilosa) server is running at `localhost:10101` (the default):\n\n```java\n// Create the default client\nPilosaClient client = PilosaClient.defaultClient();\n\n// Retrieve the schema\nSchema schema = client.readSchema();\n\n// Create an Index object\nIndex myindex = schema.index(\"myindex\");\n\n// Create a Field object\nField myfield = myindex.field(\"myfield\");\n\n// make sure the index and field exists on the server\nclient.syncSchema(schema);\n\n// Send a Set query. PilosaException is thrown if execution of the query fails.\nclient.query(myfield.set(5, 42));\n\n// Send a Row query. PilosaException is thrown if execution of the query fails.\nQueryResponse response = client.query(myfield.row(5));\n\n// Get the result\nQueryResult result = response.getResult();\n\n// Act on the result\nif (result != null) {\n    List\u003cLong\u003e columns = result.getRow().getColumns();\n    System.out.println(\"Got columns: \" + columns);\n}\n\n// You can batch queries to improve throughput\nresponse = client.query(\n    myindex.batchQuery(\n        myfield.row(5),\n        myfield.row(10)\n    )\n);\nfor (Object r : response.getResults()) {\n    // Act on the result\n}\n```\n\n## Documentation\n\n### Data Model and Queries\n\nSee: [Data Model and Queries](docs/data-model-queries.md)\n\n### Executing Queries\n\nSee: [Server Interaction](docs/server-interaction.md)\n\n### Importing and Exporting Data\n\nSee: [Importing Data](docs/imports.md)\n\n## Contributing\n\nSee: [CONTRIBUTING](CONTRIBUTING.md)\n\n## License\n\nSee: [LICENSE](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FFeatureBaseDB%2Fjava-pilosa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FFeatureBaseDB%2Fjava-pilosa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FFeatureBaseDB%2Fjava-pilosa/lists"}