Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Python Driver | 1,351 | 593 | 105 | 9 days ago | 75 | June 06, 2023 | 16 | apache-2.0 | Python | |
DataStax Python Driver for Apache Cassandra | ||||||||||
Java Driver | 1,306 | 2,706 | 664 | 10 days ago | 105 | July 26, 2023 | 25 | apache-2.0 | Java | |
DataStax Java Driver for Apache Cassandra | ||||||||||
Nodejs Driver | 1,207 | 668 | 276 | a day ago | 50 | September 15, 2023 | 9 | apache-2.0 | JavaScript | |
DataStax Node.js Driver for Apache Cassandra | ||||||||||
Pycassa | 508 | 226 | 2 | 4 years ago | 37 | January 17, 2017 | 12 | other | Python | |
Python Thrift driver for Apache Cassandra | ||||||||||
Scylla Rust Driver | 466 | 10 | 10 hours ago | 15 | October 04, 2022 | 114 | apache-2.0 | Rust | ||
Async CQL driver for Rust, optimized for Scylla! | ||||||||||
Php Driver | 433 | 43 | 22 | a day ago | 12 | August 11, 2017 | 5 | other | C | |
[MAINTENANCE ONLY] DataStax PHP Driver for Apache Cassandra | ||||||||||
Cpp Driver | 386 | 2 days ago | 15 | apache-2.0 | C++ | |||||
DataStax C/C++ Driver for Apache Cassandra | ||||||||||
Hive Jdbc Uber Jar | 248 | 3 months ago | 6 | Java | ||||||
Hive JDBC "uber" or "standalone" jar based on the latest Apache Hive version | ||||||||||
Node Hbase | 232 | 43 | 8 | 2 years ago | 28 | December 04, 2019 | 9 | mit | CoffeeScript | |
Asynchronous HBase client for NodeJs using REST | ||||||||||
Calcite Avatica | 211 | 58 | 40 | 7 days ago | 15 | January 16, 2023 | 15 | apache-2.0 | Java | |
Apache Calcite Avatica |
10Layer Version 2 (LS) is a Content Management System designed to be extremely customisable. It seperates the CMS from the front-end, and uses a RESTful API to feed the front-end with JSON data. Data types can be designed, prototyped and built quickly, essentially giving you all the benefits of a completely custom CMS without the hassle of actually building one.
This assumes a totally clean Debian or Ubuntu server. We've called ours test.10layer.com and is available on that address on the internet. All commands are root.
First we fix this annoying language bug in Debian
export LC_ALL="en_US.UTF-8"
locale-gen
We make sure our system is up-to-date
apt-get update
apt-get upgrade
We configure the system for our time zone, or for GMT
dpkg-reconfigure tzdata
We generate a public and private key
ssh-keygen
We install the prerequisites. Choose "Internet Site" for the Postfix setup.
apt-get install git-core mongodb-server php5 apache2 php5-dev php-pear build-essential postfix imagemagick optipng
We install the Mongo drivers for PHP. In Debian, this should be available as a package, so you could alternatively apt-get install php-mongo.
pecl install mongo
echo "extension=mongo.so" > /etc/php5/apache2/conf.d/mongo.ini
We enable the Rewrite module in Apache
a2enmod rewrite
We use the .htaccess file in /var/www, so we need to change AllowOverride None to AllowOverride All for /var/www:
pico /etc/apache2/sites-enabled/000-default
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
Restart Apache to ensure the changes take effect
apache2ctl restart
Download 10Layer LS
cd /var
rm -rf www
git clone [email protected]:10layer/10Layer-LS.git www
Visit http://test.10layer.com and follow the instructions.