search
HomeDatabaseMysql Tutorial考试系统学术报告-非结构化数据库

考试系统学术报告-非结构化数据库

Jun 07, 2016 pm 03:28 PM
usdatabasesystemStructuredtake an examEnglishthis

这个还的从我们的英语的第一次测试说起,第一次测试,测试人数170,8人,测试的有效数据100.其中呢,英语听力是怎么个状况,有人说听力很正常。没问题,有人说试抽出来了,听力过了5分钟才有,还有说干脆听不到。当时呢,我自己也在集体的测试中,具体的问题先

这个还的从我们的英语的第一次测试说起,第一次测试,测试人数170,8人,测试的有效数据100.其中呢,英语听力是怎么个状况,有人说听力很正常。没问题,有人说试抽出来了,听力过了5分钟才有,还有说干脆听不到。当时呢,我自己也在集体的测试中,具体的问题先不说。第一次测试问题正式暴漏。开会整理后,我们积极查找原因。是什么造成的。后来的第二次,三次听力测试的时候。还是出现了同样的问题。说声音不清楚。这次吸取了上次的教训。首先让同学们排除自己问题,是否电脑耳机没插好,耳机是否适配,确认不是自己问题了再上报自己的情况。
下面大家请看这两张图
 
\
\
相信做个测试的同学,对以上两个页面是很熟悉的。
我们英语听力确实出现了问题,有哪些问题呢,如何发现的?什么原因造成的?又是如何解决的?
出现的问题综合有两类
网络影响,没有音频
音频延迟

 

这个时候就体现了我们对问题的分析能力了。如何才能总结先前经验,快速发现问题,找到问题的原因,并解决它。

 

发现问题

方案一 ping服务器

我们注意看下面的这个图

\

 

你不是没有声音么,我们看看你是否能连接到服务器。

当时我们英语测试的时候其中之一发现的问题来自于ping 服务器的网址 ,大家可以依稀看到响应时间是404ms,而正常情况好似多少呢.

\

正常情况小于1ms

对比相差400多陪,而且中间还有断续或网络中断。这就是是病毒造成的。经过米老师的不懈努力,终于将这个arp病毒困死在了本机,出不去了,具体的方法是通过网络中心绑定端口。这个问题解决了后,英语听力基本是没有什么大问题了。

小范围的测试是没有问题 了,可是到了第二天考英语的时候,每次是在800人以上。服务器的承受压力,大家请看这幅图。这个是考生刚登陆系统时的截图。

 

\

方案二: 通过监视服务器的运行状态

问题二 抽提中音频延迟

\

 

上图 是开始听力测试的页面了。这个时候ping服务器还是会看到超过400的现状,但是不会有超时和断续的现象,这时候就是延迟的问题了

 

查找原因

问题一解决了,再后来就得看自己的代码了,代码是否有问题呢。看了再说。

\

 

这个连接池是没有写在配置文件中的,而且大家请注意这个链接是每次进行链接时进行设置的,要写在配置文件中,方便修改。

如何修改呢,不同的数据库修改大体还是相同的 。

\

但是修改后进行更详细的测试还有没有测试出问题来。看来这个还不是主要的问题。后来在老师的带领下,考虑到了网络交换设备的转换, 服务器用的是1000M的,而我们的交换机和主机的转换确实100M的,这就大大降低了音频的传输效率,造成了延迟。所以我们就使用了隔开时间的抽提的方法。避免时间延迟。

以上的解决方法只是暂时的解决了问题,并没有根本的解决问题,更优的方法是。

通过内存加载
通过p2p处理

请问这两个方案,我们曾经是否都听到或用过呢,可是我们自己在设计的时候为何就没有运用到实际中呢,联系实际,根据已有的参考他人设计的优点,作为自己的起点,以终为始,这是我们要学习的。

下图是Mongodb数据库管理可视化页面

\

 

更详细的数据库操作,请查看我的往期 博客。

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Explain the InnoDB Buffer Pool and its importance for performance.Explain the InnoDB Buffer Pool and its importance for performance.Apr 19, 2025 am 12:24 AM

InnoDBBufferPool reduces disk I/O by caching data and indexing pages, improving database performance. Its working principle includes: 1. Data reading: Read data from BufferPool; 2. Data writing: After modifying the data, write to BufferPool and refresh it to disk regularly; 3. Cache management: Use the LRU algorithm to manage cache pages; 4. Reading mechanism: Load adjacent data pages in advance. By sizing the BufferPool and using multiple instances, database performance can be optimized.

MySQL vs. Other Programming Languages: A ComparisonMySQL vs. Other Programming Languages: A ComparisonApr 19, 2025 am 12:22 AM

Compared with other programming languages, MySQL is mainly used to store and manage data, while other languages ​​such as Python, Java, and C are used for logical processing and application development. MySQL is known for its high performance, scalability and cross-platform support, suitable for data management needs, while other languages ​​have advantages in their respective fields such as data analytics, enterprise applications, and system programming.

Learning MySQL: A Step-by-Step Guide for New UsersLearning MySQL: A Step-by-Step Guide for New UsersApr 19, 2025 am 12:19 AM

MySQL is worth learning because it is a powerful open source database management system suitable for data storage, management and analysis. 1) MySQL is a relational database that uses SQL to operate data and is suitable for structured data management. 2) The SQL language is the key to interacting with MySQL and supports CRUD operations. 3) The working principle of MySQL includes client/server architecture, storage engine and query optimizer. 4) Basic usage includes creating databases and tables, and advanced usage involves joining tables using JOIN. 5) Common errors include syntax errors and permission issues, and debugging skills include checking syntax and using EXPLAIN commands. 6) Performance optimization involves the use of indexes, optimization of SQL statements and regular maintenance of databases.

MySQL: Essential Skills for Beginners to MasterMySQL: Essential Skills for Beginners to MasterApr 18, 2025 am 12:24 AM

MySQL is suitable for beginners to learn database skills. 1. Install MySQL server and client tools. 2. Understand basic SQL queries, such as SELECT. 3. Master data operations: create tables, insert, update, and delete data. 4. Learn advanced skills: subquery and window functions. 5. Debugging and optimization: Check syntax, use indexes, avoid SELECT*, and use LIMIT.

MySQL: Structured Data and Relational DatabasesMySQL: Structured Data and Relational DatabasesApr 18, 2025 am 12:22 AM

MySQL efficiently manages structured data through table structure and SQL query, and implements inter-table relationships through foreign keys. 1. Define the data format and type when creating a table. 2. Use foreign keys to establish relationships between tables. 3. Improve performance through indexing and query optimization. 4. Regularly backup and monitor databases to ensure data security and performance optimization.

MySQL: Key Features and Capabilities ExplainedMySQL: Key Features and Capabilities ExplainedApr 18, 2025 am 12:17 AM

MySQL is an open source relational database management system that is widely used in Web development. Its key features include: 1. Supports multiple storage engines, such as InnoDB and MyISAM, suitable for different scenarios; 2. Provides master-slave replication functions to facilitate load balancing and data backup; 3. Improve query efficiency through query optimization and index use.

The Purpose of SQL: Interacting with MySQL DatabasesThe Purpose of SQL: Interacting with MySQL DatabasesApr 18, 2025 am 12:12 AM

SQL is used to interact with MySQL database to realize data addition, deletion, modification, inspection and database design. 1) SQL performs data operations through SELECT, INSERT, UPDATE, DELETE statements; 2) Use CREATE, ALTER, DROP statements for database design and management; 3) Complex queries and data analysis are implemented through SQL to improve business decision-making efficiency.

MySQL for Beginners: Getting Started with Database ManagementMySQL for Beginners: Getting Started with Database ManagementApr 18, 2025 am 12:10 AM

The basic operations of MySQL include creating databases, tables, and using SQL to perform CRUD operations on data. 1. Create a database: CREATEDATABASEmy_first_db; 2. Create a table: CREATETABLEbooks(idINTAUTO_INCREMENTPRIMARYKEY, titleVARCHAR(100)NOTNULL, authorVARCHAR(100)NOTNULL, published_yearINT); 3. Insert data: INSERTINTObooks(title, author, published_year)VA

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor