Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 19 of 20

Project moved to http://github.com/dcramer/php-database/tree/master

0
 
  0 reviews  |  0 users  |  285 lines of code  |  0 current contributors  |  Analyzed 8 days ago
 
 

IntroductionKineta is a non-SQL-based relational database which is designed to stay out of your way and make your life easier. For much more information on what Kineta is all about, see the WhyKineta wiki page. To start using Kineta, see GettingStarted. Reference Documentation is now also ... [More] available. Feature OverviewWritten in Python, distributed as a normal Python package. "Do what I want" semantics: To create a table, insert data. To add a column, update data. To remove a column, update all its values to 'None'. Put any data type in any column. Querying a non-existant column returns None. Querying a non-existant table returns 0 rows. No more schema migration problems! Automatically creates indexes based on past queries, drops indexes when they are no longer in use. Indexes can also be manually created/frozen. Robust relational query engine with joins/aggregate functions. Optimized to return large result sets from queries. Queries are specified as Python dictionaries/lists or JSON; easily manipulate queries as data structures. No reserved words, disallowed characters, or quoting issues. Any unicode string can be a table or column name. Can be embedded in Python apps or hosted in any WSGI-compliant web server. Communicate via open standards: JSON over HTTP. Simple, clean, secure: User-friendly API. No embedded programming languages; keep your data in your database and your code in one place. StatusCurrently Kineta is not ready for general use. The code is coming together well and is very usable, but a couple major things still need to be implemented. Thanks for your interest and check back here for updates. [Less]

0
 
  0 reviews  |  0 users  |  5,096 lines of code  |  0 current contributors  |  Analyzed about 19 hours ago
 
 

创建这个项目的时候原打算光对数据库进行性能分析和测试,但是因为考虑到学校实训的项目和自己在web方面的性能监控不仅在db方面,还扩大到了整个应用程序层次,而整个应用程序就非常复杂,光考虑数据库的性能远远不够 ... [More] 因此这个项目的测试对象扩大到整个应用程序层面 对web应用程序的性能分析时,不仅要考虑整个应用程序的性能,还要考虑各个层次的性能。 这些层次有:(假设php应用程序) php代码的性能 数据库的性能 服务器的性能 这是一个不同的web程序最需要关注的方面,在对其进行改进的时候,一定会加入其他一些层,比如对php代码进行优化的时候,你肯定会加入php代码缓存技术对编译完成的代码进行优化;对数据库进行优化的时候,你肯定会想到使用数据库缓存技术,在数据库和应用逻辑之间加入一个缓存服务器;在比如对服务器进行优化的时候,你肯定会想到负载均衡和缓存技术,这样会在原来的服务器和用户之间再加入一层用于控制负载等等等等。 但是上面那些层次是我认为最基本的,而且在本项目中,那些也是最基本的测试对象。 在开发测试程序的时候,遵循这样一个原则: 从大局出发,逐渐细化。先对整个应用程序进行测试,然后再测试各个层次 先对能快速提高整个应用程序性能的部分进行测试,然后再测试那些非主流的部分 先对容易测试的进行测试,然后是那些不太容易分析的部分。 服务器测试ab Siege PHP方面知识PHPOrPython (使用php还是使用python的思考) HowToUsePECL (如何使用PECL) HowToUsePEAR (如何使用PEAR) APD (advanced PHP debugger) PHPBenchmark (php语句的性能对比) 数据库Database 测试说明BenchMarking (压力测试说明) 其他的思考StudyOrProjects (我实在学习还是在做项目) [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed about 2 years ago
 
 

world of warcraft private funserver ascent sql database.

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

MySQL database administration UI built with Adobe Flex. Intended to provide feature parity with phpMyAdmin as a starting point.

0
 
  0 reviews  |  0 users  |  182 lines of code  |  0 current contributors  |  Analyzed 7 days ago
 
 

This add-on is now included in Io main repository. MySQL is a fast, multi-threaded, multi-user SQL database server. IoMySQL is a MySQL binding for Io, by Hong, MinHee. my := MySQL establish("localhost", "user", "password", "database") # Get rows by Map my ... [More] queryThenMap("SELECT * FROM rel") foreach(at("col") println) # Get rows by List my query("SELECT * FROM rel") foreach(at(0) println) my close [Less]

0
 
  0 reviews  |  0 users  |  193 lines of code  |  0 current contributors  |  Analyzed 5 days ago
 
 

Design and implementation of a dynamic DB Visualizer. Its goals it to display dynamically the relationships of a huge database from its SQL schema. I set up the SVN soon.

0
 
  0 reviews  |  0 users  |  22,135 lines of code  |  0 current contributors  |  Analyzed 2 days ago
 
 

it's a PHP project that allow user to modify easily data from mysql tables. it works such as phpmyadmin but the it's implemented with ajax so can edit quickly. will be a powerfull editor for mysql clients with many features for searching, filtering and powerfull tools for managind a lot of ... [More] data in mass. includes also backup features and history system [Less]

0
 
  0 reviews  |  0 users  |  567 lines of code  |  0 current contributors  |  Analyzed 6 days ago
 
 

Content management for the Hydora game.

0
 
  0 reviews  |  0 users  |  6,252 lines of code  |  0 current contributors  |  Analyzed 7 days ago
 
 

Tight wip game framework, to help with development in the DarkBASIC Professional language. (Will) consist of a suite of editors, lots of extremely-easy-to-call code, and god knows what else. The majority of the code is modular, so you can just use the components of BLib that you want. Current ... [More] features: Remote debugging client (all logging data sent over one-to-16 tcp connections (OPTIONAL!)), extremely easy to use audio library (automatically switches between Torrey's audio dll, DBP Music and DBP Sound API based on what's needed and tracks everything), and a DBP-code-only windowing system. ^_^ It smells like awesome in here. Use the code as you like; as a learning platform, a step-up for your game.... It's up to you. [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 4 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.